/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: center;
    background-color: #56AAF3;
    color: #333;
    overflow-x: hidden;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1F2937);
    z-index: -1;
    animation: gradient 10s infinite alternate;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Container */
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    
}

.container:hover {
    transform: scale(1.02);
}

/* Domain Title */
#domain-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffff;
    animation: fadeIn 2s ease-in-out;
background: linear-gradient(to bottom, rgb(255,48,25) 0%,rgb(207,4,4) 100%);
    margin-bottom: 20px;
    border-radius: 10px;

}

.domain-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Description Section */
.description-section {
    margin-bottom: 20px;
    animation: slideUp 1s ease-in-out;
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.description-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.description-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Other Domains Section */
.other-domains {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.other-domains h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 0 10px;
}

.domain-item {
background: linear-gradient(to bottom,  rgb(248,80,50) 0%,rgb(241,111,92) 50%,rgb(246,41,12) 51%,rgb(240,47,23) 71%,rgb(231,56,39) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 10px;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.domain-item:hover {
    background: #fb8ea8;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}