* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0f;
    --secondary-color: #1a0a2e;
    --accent-color: #9d4edd;
    --neon-purple: #c77dff;
    --neon-pink: #e0aaff;
    --gold-color: #ffd700;
    --text-light: #ffffff;
    --text-dark: #e0e0e0;
    --bg-light: #1a0a2e;
    --bg-dark: #0a0a0f;
    --bg-section: #1a0a2e;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(157, 78, 221, 0.3);
    border-bottom: 2px solid var(--neon-purple);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8), 0 0 40px rgba(157, 78, 221, 0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 30px rgba(224, 170, 255, 0.9), 0 0 60px rgba(199, 125, 255, 0.7);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--neon-purple);
    border-bottom: 2px solid var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.6);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    background: var(--secondary-color);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
    max-height: 300px;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2rem;
    transition: background 0.3s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: rgba(199, 125, 255, 0.2);
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.6);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--neon-purple);
    box-shadow: 0 -2px 20px rgba(157, 78, 221, 0.3);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    cursor: pointer;
}

.social-links a:hover {
    color: var(--gold-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--neon-purple);
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-section);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 40px rgba(199, 125, 255, 0.4);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--neon-purple);
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.6);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    color: var(--text-light);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body h3 {
    color: var(--neon-purple);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.3s;
}

.cookie-popup.active {
    display: block;
}

.cookie-popup p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--neon-purple);
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.4), 0 0 40px rgba(157, 78, 221, 0.2);
    font-weight: 600;
}

.btn:hover {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.6), 0 0 60px rgba(157, 78, 221, 0.4);
    border-color: var(--neon-pink);
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--bg-section);
    box-shadow: 0 0 25px rgba(199, 125, 255, 0.5);
}

/* Social Popup */
.social-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.social-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-popup-content {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s;
}

.social-popup-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.social-search-form button {
    padding: 0.75rem 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 50px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .logo {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .modal-content,
    .social-popup-content {
        padding: 1.5rem;
    }
}

