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

:root {
    --primary-color: #d4a5e4;
    --primary-dark: #c89adb;
    --accent-color: #9333ea;
    --light-bg: #f3e7f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #dda5f0;
    --pink: #ff69b4;
    --pink-dark: #ff1493;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f3e7f5 0%, #e8d5f0 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo h1 {
    color: var(--accent-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: var(--light-bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #d4a5e4 0%, #c89adb 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 30px 0;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.15);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content > p:first-of-type {
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
}

.btn-donate {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: var(--white);
    width: 100%;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* HIGHLIGHTS */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.highlight-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* MAIN CONTENT */
.main-content {
    padding: 40px 0;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
}

.about-image i {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.about-age {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    border-left: 4px solid var(--accent-color);
}

.detail-item h4 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.detail-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* GAMES SECTION */
.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.game-icon {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.game-item h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.game-item p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.streaming-schedule {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    border: 2px solid var(--pink);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.streaming-schedule h3 {
    color: var(--pink-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.streaming-schedule p {
    color: var(--text-light);
    font-size: 16px;
}

/* DONATE SECTION */
.donate-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.donate-card,
.paypal-section,
.other-support {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
}

.donate-card h3,
.paypal-section h3,
.other-support h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.donate-list {
    list-style: none;
    margin-top: 15px;
}

.donate-list li {
    color: var(--text-light);
    margin: 10px 0;
    padding-left: 0;
    line-height: 1.7;
}

.paypal-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    border: 2px solid var(--pink);
}

.paypal-section h3 {
    color: var(--pink-dark);
}

.paypal-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.2);
}

.payment-info {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.support-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-3px);
}

.support-item i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.support-item h4 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.support-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.contact-info h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 16px;
}

.social-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--white);
}

.twitch-btn {
    background: #5865F2;
}

.twitch-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

.discord-btn {
    background: #5865F2;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

.tiktok-btn {
    background: #000000;
}

.tiktok-btn:hover {
    background: #262626;
    transform: translateY(-3px);
}

.contact-form {
    grid-column: 1 / -1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
}

.contact-form h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form textarea {
    resize: vertical;
    font-family: inherit;
}

/* FOOTER */
.footer {
    background: var(--white);
    padding: 30px;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid var(--border-color);
}

.footer p {
    color: var(--text-light);
    margin: 5px 0;
}

.footer p:first-child {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
    }

    .hero {
        padding: 40px 25px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .donate-container {
        grid-template-columns: 1fr;
    }

    .paypal-section {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 20px;
    }

    .hero {
        padding: 25px 15px;
        margin: 15px 0;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .games-container {
        grid-template-columns: 1fr;
    }

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