/* ==========================================
   MODERN DARK THEME - EVERYMMS
   ========================================== */

/* ROOT VARIABLES */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-orange: #ff6b35;
    --accent-purple: #764ba2;
    --accent-pink: #f5576c;
}

/* GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Prevent horizontal scroll on all sections */
body, .hero-section, .community-section {
    overflow-x: hidden;
}

/* LOGO */
.logo-container {
    position: fixed;
    top: 2rem;
    left: 3rem;
    z-index: 2000;
    animation: fadeInDown 1s ease-out;
}

.site-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    transform: scaleX(-1);
    will-change: transform;
}

/* Disable parallax on mobile for better performance */
@media (max-width: 991px) {
    .hero-background,
    .community-background {
        background-attachment: scroll;
    }
}

/* Dark Gradient Overlay - Deep Black Gradient */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.90) 15%,
        rgba(5, 5, 15, 0.80) 30%,
        rgba(10, 10, 20, 0.60) 50%,
        rgba(15, 15, 25, 0.30) 70%,
        rgba(20, 20, 30, 0.10) 85%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* FLOATING LIGHTS ANIMATION */
.floating-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: rgba(10, 20, 40, 0.6);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: rgba(15, 25, 50, 0.5);
    bottom: 20%;
    left: 5%;
    animation-delay: 7s;
}

.light-3 {
    width: 350px;
    height: 350px;
    background: rgba(20, 30, 60, 0.4);
    top: 50%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, -80px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 60px) scale(0.9);
        opacity: 0.5;
    }
}

/* HERO CONTENT */
.hero-content {
    padding: 2rem;
    z-index: 100;
    position: relative;
}

.content-wrapper {
    max-width: 600px;
    padding: 2rem 0;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* BUTTONS */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f5576c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* SOCIAL BUTTONS */
.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
    color: white;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
    color: white;
}

.vip-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: white;
}

.security-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-note i {
    color: var(--accent-orange);
}


/* COMMUNITY SECTION */
.community-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
    overflow: hidden;
    background: #000000;
}

.community-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    will-change: transform;
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.90) 20%,
        rgba(5, 5, 15, 0.85) 40%,
        rgba(10, 10, 20, 0.60) 60%,
        rgba(15, 15, 25, 0.25) 80%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.community-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fadeInLeft 0.8s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(245, 87, 108, 0.2));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Social Cards */
.social-cards {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: fadeInRight 0.8s ease-out backwards;
}

.social-card:nth-child(1) { animation-delay: 0.3s; }
.social-card:nth-child(2) { animation-delay: 0.5s; }
.social-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.telegram-card:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
}

.instagram-card:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

.vip-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.telegram-card .card-icon {
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.instagram-card .card-icon {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.vip-card .card-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover {
    color: var(--accent-orange);
    text-decoration: none;
    gap: 0.8rem;
}

.card-btn:hover i {
    transform: translateX(5px);
}

/* FOOTER */
.footer-section {
    padding: 1.5rem 0;
    background: #000000;
    text-align: center;
    position: relative;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--accent-pink);
}

/* RESPONSIVE DESIGN */

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .hero-content {
        padding: 2rem 4rem;
    }

    .content-wrapper {
        max-width: 700px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        padding: 3rem 2rem;
    }

    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .button-group {
        justify-content: center;
    }

    .social-buttons {
        justify-content: center;
    }

    .security-note {
        justify-content: center;
    }

    /* Mobile gradient - REVERSED: clear top (girl), dark bottom (text) */
    .gradient-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.10) 20%,
            rgba(0, 0, 0, 0.30) 40%,
            rgba(0, 0, 0, 0.70) 65%,
            rgba(0, 0, 0, 0.88) 85%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }

    .hero-background {
        background-position: 40% top;
        background-size: cover;
    }

    /* Community Section Mobile */
    .community-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }

    .community-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(5, 5, 15, 0.90) 50%,
            rgba(10, 10, 20, 0.85) 100%
        );
    }

    .community-background {
        opacity: 0.5;
        background-position: center top;
    }

    .features-list {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .social-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .light {
        display: none;
    }

    .logo-container {
        left: 1.5rem;
        top: 1.5rem;
    }

    .site-logo {
        height: 45px;
    }

    /* Hero section adjustments for tablet */
    .hero-section {
        min-height: 100vh;
    }

    .hero-background {
        background-position: 40% top;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .content-wrapper {
        padding: 1rem 0;
    }

    /* Community Section Tablet */
    .social-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-badge {
        display: block;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .badge-premium {
        font-size: 0.65rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }

    .logo-container {
        left: 1rem;
        top: 1rem;
    }

    .site-logo {
        height: 40px;
    }

    /* Hero section for mobile - center girl */
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
    }

    .hero-background {
        background-position: 40% top;
        background-size: cover;
    }

    .hero-content {
        padding: 3rem 1.5rem 2rem 1.5rem;
        width: 100%;
        display: flex;
        align-items: flex-end;
        min-height: 100vh;
    }

    .content-wrapper {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .security-note {
        font-size: 0.85rem;
    }

    /* Community Section Mobile */
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .social-cards {
        padding: 1rem;
    }

    .social-card {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (below 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .badge-premium {
        font-size: 0.6rem;
        padding: 0.3rem 1rem;
    }

    .hero-background {
        background-position: 40% top;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .site-logo {
        height: 35px;
    }

    .logo-container {
        left: 0.8rem;
        top: 0.8rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 991px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        padding: 2rem 2rem 1rem 2rem;
    }

    .content-wrapper {
        padding: 0.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .button-group {
        margin-bottom: 1rem;
    }

    .security-note {
        margin-top: 1rem !important;
    }

    .hero-background {
        background-position: 40% top;
    }

    /* Landscape gradient - REVERSED: clear top (girl), dark bottom (text) */
    .gradient-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.20) 30%,
            rgba(0, 0, 0, 0.60) 60%,
            rgba(0, 0, 0, 0.85) 90%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
}

/* SCROLL ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.badge-premium {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.3s;
}

.button-group {
    animation-delay: 0.4s;
}

.social-buttons {
    animation-delay: 0.5s;
}

.security-note {
    animation-delay: 0.6s;
}

.hero-background {
    animation: fadeIn 1.5s ease-out;
}
