:root {
    --primary-red: #ff0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #1a1a1a;
    --hover-red: #ff3333;
    --glow-red: rgba(255, 0, 0, 0.3);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px var(--glow-red);
    transition: box-shadow 0.3s ease;
}

.nav-logo:hover {
    box-shadow: 0 0 30px var(--hover-red);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-red);
}

.invite-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-red);
    text-decoration: none;
}

.invite-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--hover-red);
    color: white !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-red) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), #ff6666, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
    text-shadow: 0 0 40px var(--glow-red);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: white;
    box-shadow: 0 4px 15px var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--hover-red);
}

.btn-secondary {
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px var(--glow-red);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    width: clamp(200px, 30vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 30px var(--glow-red));
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-red);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-red) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stats {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--glow-red) 0%, transparent 50%);
    opacity: 0.1;
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-red);
    filter: drop-shadow(0 0 20px var(--glow-red));
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--glow-red);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.footer-links a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--glow-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    color: var(--text-gray);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.premium-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--glow-red) 0%, transparent 50%);
    opacity: 0.2;
}

.premium-title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.premium-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.pricing {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.premium {
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 15px 50px var(--glow-red);
}

.pricing-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--glow-red);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px var(--glow-red));
}

.price-period {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.feature-list li:first-child {
    margin-top: 1rem;
}

.legal {
    padding: 8rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.legal h1 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.legal h2 {
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal h3 {
    color: var(--primary-red);
    margin: 1.5rem 0 1rem;
}

.legal p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.legal a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--glow-red);
}

@media (max-width: 768px) {
    .pricing-card.premium {
        transform: none;
    }
    
    .legal-container {
        padding: 2rem;
    }
}

.about-hero, .support-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before, .support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--glow-red) 0%, transparent 50%);
    opacity: 0.2;
}

.about-title, .support-title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-red), #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-subtitle, .support-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission, .team, .values, .faq, .contact, .status, .premium-features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-container, .team-container, .values-container, .faq-container, .contact-container, .status-container {
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member, .value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.team-member:hover, .value-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.member-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red);
    transition: all 0.3s ease;
}

.role-icon {
    width: 30px;
    height: 30px
}
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--hover-red);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.team-member h3, .value-card h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-member p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.faq-list {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--glow-red);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-info h3 {
    color: var(--primary-red);
    margin: 1.5rem 0 0.5rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-form iframe {
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.quick-help {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-help-container {
    text-align: center;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-help-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--text-light);
    cursor: pointer;
}

.quick-help-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--glow-red);
}

.quick-help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
    transition: transform 0.3s ease;
}

.quick-help-card:hover .quick-help-icon {
    transform: scale(1.2) rotate(5deg);
}

.quick-help-card h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.quick-help-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary-red);
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--glow-red);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
}

.contact-time {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-form iframe {
        width: 100% !important;
        height: 400px !important;
    }
}
