body {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333333;
    background-attachment: fixed;
    overflow-x: hidden;
}
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.navbar-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #333333;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 48px 32px;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 48px auto 24px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
h1 {
    color: #333333;
    font-size: 3.5em;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.subtitle {
    color: #333333;
    font-size: 1.8em;
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0 32px 0;
}
.offer {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #333333;
}

.offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.offer-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-desc {
    color: #666666;
    font-size: 1em;
    margin: 6px 0 0 0;
}
.offer-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #333333;
    margin-top: 16px;
}
.offer-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-link:hover,
.offer-link:active {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}
.badge {
    background-color: #ffffff;
    color: #0a0a14;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.partners {
    margin-top: 48px;
}
.partners h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}
.partner {
    font-size: 1.1em;
    color: #666666;
}

.creator-banner {
    background: url('creator.png') center/cover no-repeat;
    padding: 60px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    cursor: pointer;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.creator-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.creator-banner.show-text::before {
    background: rgba(0, 0, 0, 0.85);
}

.creator-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.creator-content.initial {
    opacity: 1;
    transform: translateY(0);
}

.creator-content.hidden {
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    max-width: 600px;
}

.creator-banner.show-text .creator-content.initial {
    opacity: 0;
    transform: translateY(-20px);
}

.creator-banner.show-text .creator-content.hidden {
    opacity: 1;
    transform: translateY(0);
}

.creator-content h2 {
    font-size: 2.5em;
    margin-bottom: 16px;
    color: white;
}

.creator-content p {
    font-size: 1.2em;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #5865F2;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.creator-content.initial .discord-button {
    font-size: 1.4em;
    padding: 16px 32px;
}

.discord-button:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.discord-button i {
    font-size: 1.2em;
}

footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px 20px 40px;
    margin-top: 80px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 16px;
    color: #333333;
}

.footer-column a {
    color: #666666;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #333333;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
    font-size: 0.9em;
}

.brand-text {
    font-family: 'Mozilla Headline', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    vertical-align: middle;
}

h1, h2, h3, .subtitle {
    font-family: 'Mozilla Headline', sans-serif;
    font-weight: 600;
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 18px;
    color: #ffffff;
}

.toast-message {
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
}
a {
    color: #333333;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-button {
    background-color: transparent;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Mozilla Headline', sans-serif;
    color: #333333;
    border: 2px solid #333333;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

.nav-button:hover,
.nav-button:active {
    background-color: #333333;
    color: #ffffff;
    transform: scale(1.05);
}

.hero-section {
    padding: 40px 20px;
    margin-bottom: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.8) 100%);
}

.hero-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: #333333;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.feature i {
    color: #333333;
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.user-avatars {
    display: flex;
    gap: 10px;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.creator-avatar:hover {
    transform: scale(1.1);
}

.avatar-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-bottom: 8px;
}

.avatar-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.avatar-container:hover .avatar-tooltip {
    opacity: 1;
    visibility: visible;
}

.start-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.start-button:hover {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}

.game-section {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.game-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-period {
    font-size: 0.6em;
    opacity: 0.7;
    font-weight: 400;
}

.game-banner {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
}

.plan-info {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: rgba(40, 30, 60, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.highlight-price {
    color: #333333;
    font-weight: 700;
    font-size: 1.3em;
}

.discover-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.discover-button:hover {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}

.about-content, .legal-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-section, .legal-section {
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    text-align: left;
}

.legal-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Mozilla Headline', sans-serif;
}

.legal-section p {
    font-size: 1.1em;
    line-height: 1.6;
}

.legal-section ul {
    list-style-type: none;
    padding: 0;
}

.legal-section ul li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.legal-section ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.privacy-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content section {
    margin-bottom: 40px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.privacy-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }
    
    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(30, 20, 50, 0.95);
        text-align: center;
        z-index: 100;
        backdrop-filter: blur(10px);
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        padding: 1.5rem;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-toggle {
        display: block;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .container {
        margin: 24px 16px;
        padding: 32px 20px;
    }
    
    h1 {
        font-size: 2.2em;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.3em;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .features-list {
        align-items: center;
        gap: 8px;
    }
    
    .feature {
        font-size: 1em;
    }
    
    .trusted-by {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .offers {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offer {
        padding: 20px 16px;
    }
    
    .offer-title {
        font-size: 1.3em;
    }
    
    .offer-price {
        font-size: 1.4em;
    }
    
    .game-section {
        padding: 20px;
        margin-top: 40px;
    }
    
    .game-section h2 {
        font-size: 1.8em;
    }
    
    footer {
        padding: 40px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 16px;
    }
    
    .navbar-brand {
        font-size: 1.3em;
    }
    
    .container {
        margin: 16px 8px;
        padding: 24px 16px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .offer {
        padding: 16px 12px;
    }
    
    .offer-title {
        font-size: 1.2em;
    }
    
    .offer-price {
        font-size: 1.3em;
    }
    
    .start-button {
        padding: 12px 24px;
        font-size: 1em;
    }
    
    .discover-button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}