﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-image: url(/web/images/IMG-63daadc83074c2.68061294.webp);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.seo-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* Başlanğıcda gizli */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    position: relative;
}

    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
        font-size: 1.1rem;
    }

        .nav-links a:hover {
            color: #667eea;
            text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* yüngül overlay */
        z-index: 1; /* overlay yazının ALTINDA olsun */
    }

    .slide.active {
        opacity: 1;
        z-index: 2; /* aktiv slayd üstdə olsun */
    }

.slide-content {
    position: relative;
    z-index: 3; /* yazı overlay-in üstündə olsun */
    text-align: center;
    color: #fff;
    padding: 2rem;
}

    .slide-content h1 {
        font-size: 4rem;
        margin-bottom: 1.2rem;
        font-weight: 900;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
        animation: fadeInUp 1s ease;
    }

    .slide-content p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        animation: fadeInUp 1.3s ease;
    }

.slide-1 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(/web/images/1599897667_sat_exam.png) center/cover no-repeat;
}

.slide-2 {
    background: linear-gradient(rgba(240,147,251,0.4), rgba(245,87,108,0.4)), url(/web/images/sat_students.png) center/cover no-repeat;
}

.slide-3 {
    background: linear-gradient(rgba(79,172,254,0.4), rgba(0,242,254,0.4)), url(/web/images/all-about-sat-100.jpg) center/cover no-repeat;
}

/* animasiya */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: #0a0e27;
    position: relative;
}

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #667eea, transparent);
    }

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.5), 0 0 40px rgba(102, 126, 234, 0.3);
    }

    50% {
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 60px rgba(102, 126, 234, 0.5), 0 0 90px rgba(102, 126, 234, 0.3);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    transition: all 0.5s;
    cursor: pointer;
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.3), transparent);
        transform: rotate(45deg);
        transition: 0.5s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-20px) scale(1.05);
        box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6), 0 0 50px rgba(118, 75, 162, 0.4);
        border-color: rgba(102, 126, 234, 0.8);
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    }

.feature-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Detail Section */
.detail-section {
    display: none;
    padding: 4rem 5%;
    background: #0a0e27;
}

    .detail-section.active {
        display: block;
        animation: fadeIn 0.5s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.back-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s;
    font-weight: bold;
}

    .back-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    }

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

    .detail-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        border-color: rgba(102, 126, 234, 0.6);
    }

    .detail-card h4 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .detail-card p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .detail-card .status {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: bold;
        margin-top: 1rem;
    }

.status.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status.completed {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 1rem 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s;
}

    .modal.active {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 3rem;
    border-radius: 30px;
    max-width: 550px;
    width: 90%;
    position: relative;
    animation: slideDown 0.5s;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
    z-index: 10;
}

    .close-modal:hover {
        color: #667eea;
        transform: rotate(90deg);
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    }

.modal-content h2 {
    margin-bottom: 2.5rem;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 1.8rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 2px solid rgba(102, 126, 234, 0.3);
        border-radius: 15px;
        font-size: 1.1rem;
        transition: all 0.3s;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        }

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

    .submit-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.8);
    }

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    color: white;
    padding: 4rem 5%;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #667eea;
    font-weight: 800;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: #667eea;
    }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(102, 126, 234, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: #667eea;
            transform: translateY(-5px);
        }

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 3rem 2rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
        display:flex;
    }

.modal-content {
    background: #111;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    color: #f0f0f0;
    border-top: 4px solid #FFD700;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.close-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

    .close-btn:hover {
        color: white;
    }

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-input:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }

/* Country Selector Styles */
.phone-input-container {
    display: flex;
    gap: 0.5rem;
}

.country-selector {
    position: relative;
    width: 140px;
}

.country-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

    .country-button:hover,
    .country-button:focus {
        border-color: #FFD700;
    }

.country-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-flag {
    font-size: 1.125rem;
}

.country-code {
    font-weight: 500;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.country-selector.open .dropdown-icon {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.25rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 50;
    max-height: 240px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.country-selector.open .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    padding: 0.75rem;
    border-bottom: 1px solid #333;
}

.search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    position: relative;
}

.search-container::before {
    content: '🔍';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.countries-list {
    max-height: 160px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: white;
}

    .country-option:hover {
        background-color: #2a2a2a;
    }

.country-details {
    flex: 1;
    min-width: 0;
}

.country-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-phone {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    width: 1rem;
    height: 1rem;
    accent-color: #FFD700;
}

/* Error Styles */
.form-error {
    background-color: #dc2626;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: none;
}

    .form-error.show {
        display: block;
    }

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
    display: none;
}

    .success-message.show {
        display: block;
    }

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.btn-cancel {
    background: #6b7280;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-cancel:hover {
        background: #4b5563;
    }

.btn-submit {
    background: linear-gradient(90deg, #FFD700, #ffcc33);
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover:not(:disabled) {
        background: #ffe066;
        transform: scale(1.05);
    }

    .btn-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    main {
        padding-top: 8rem; /* More padding for mobile header */
    }

    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .level-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .phone-input-container {
        flex-direction: column;
    }

    .country-selector {
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .levels-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #333;
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ===== Register Button Animation ===== */
.register-container {
    position: relative;
    margin-top: 40px;
    display: inline-block;
}

.auto-animated-btn {
    position: relative;
    background: linear-gradient(90deg, #ff6600, #ffaa00, #ff6600);
    background-size: 300% 100%;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.6);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: glowMove 4s linear infinite;
}

/* Animated glow background */
@keyframes glowMove {
    0% {
        background-position: 0% 0%;
        box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
    }

    50% {
        background-position: 100% 0%;
        box-shadow: 0 0 40px rgba(255, 255, 100, 0.9);
    }

    100% {
        background-position: 0% 0%;
        box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
    }
}

/* Touch animation effect */
.auto-animated-btn.touch {
    transform: scale(0.93);
    box-shadow: 0 0 50px rgba(255, 255, 160, 1);
}

/* Message (Qeyd ol, imtahan başla!) */
/* Mesaj (Qeyd ol, imtahana başla!) */
.auto-message {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 14px 40px;
    border-radius: 35px;
    opacity: 0;
    font-size: 1.05rem;
    font-weight: 500;
    pointer-events: none;
    white-space: nowrap; /* <<< Yazını bir sətrə salır, alt-alta düşmür */
    max-width: none; /* Məhdudiyyəti aradan qaldırır */
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.6); /* əlavə parıltı effekti */
}

    /* Görünən vəziyyətdə */
    .auto-message.show {
        opacity: 1;
        transform: translateX(-50%) translateY(-15px);
    }

.admin-links {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 5px 0;
}

/* Admin link */
.admin-link {
    color: #1f2937; /* qaranlıq boz */
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); /* yüngül gradient */
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* subtle shadow */
    transition: all 0.2s ease;
}

    .admin-link:hover {
        background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
        color: #111827;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* Logout link */
.logout-link {
    color: #ffffff;
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #374151;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

    .logout-link:hover {
        background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
        border-color: #1f2937;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
