/* MYNX - Premium FiveM Modules - Protected Code */
/* Obfuscated CSS - Do not modify */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    text-rendering: optimizeSpeed;
    /* Anti-debug protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('background.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-origin: border-box;
    background-blend-mode: normal;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 2000px;
    perspective: 2000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform, background;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-stroke: 0.01em transparent;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 60%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.6) 88%,
        rgba(0, 0, 0, 0.85) 96%,
        #000 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(-80px);
}


.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 0 35px rgba(255, 31, 109, 0.8));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.title-line-1 {
    color: #ffffff;
    display: block;
}

.title-line-2 {
    color: #FF1F6D;
    display: block;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #FF1F6D 0%, #FF1F6D 50%, #FF1F6D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: whiteReflection 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes whiteReflection {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}


















/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(to bottom, 
        rgba(40, 3, 16, 0.85) 0%,
        rgba(30, 2, 12, 0.7) 5%,
        rgba(20, 1, 8, 0.55) 12%,
        rgba(15, 1, 6, 0.4) 20%,
        rgba(10, 1, 4, 0.25) 35%,
        rgba(8, 0, 3, 0.15) 50%,
        rgba(5, 0, 2, 0.08) 70%,
        rgba(3, 0, 1, 0.03) 85%,
        #000 100%
    );
    position: relative;
    z-index: 2;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at center top, 
        rgba(255, 31, 109, 0.15) 0%,
        rgba(220, 20, 85, 0.1) 30%,
        rgba(180, 15, 70, 0.06) 55%,
        rgba(140, 10, 55, 0.03) 75%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    filter: blur(70px);
    opacity: 0.85;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, 
        rgba(255, 31, 109, 0.08) 0%,
        rgba(220, 20, 85, 0.06) 20%,
        rgba(180, 15, 70, 0.04) 40%,
        rgba(140, 10, 55, 0.02) 60%,
        rgba(100, 7, 40, 0.01) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 1.5s; }
.star:nth-child(2) { top: 25%; left: 45%; animation-delay: 0.3s; animation-duration: 2s; }
.star:nth-child(3) { top: 15%; left: 75%; animation-delay: 0.6s; animation-duration: 1.8s; }
.star:nth-child(4) { top: 50%; left: 20%; animation-delay: 0.9s; animation-duration: 2.2s; }
.star:nth-child(5) { top: 60%; left: 60%; animation-delay: 1.2s; animation-duration: 1.6s; }
.star:nth-child(6) { top: 35%; left: 85%; animation-delay: 1.5s; animation-duration: 2.1s; }
.star:nth-child(7) { top: 70%; left: 35%; animation-delay: 0.2s; animation-duration: 1.9s; }
.star:nth-child(8) { top: 80%; left: 70%; animation-delay: 0.8s; animation-duration: 2.3s; }
.star:nth-child(9) { top: 5%; left: 50%; animation-delay: 1.1s; animation-duration: 1.7s; }
.star:nth-child(10) { top: 90%; left: 10%; animation-delay: 0.5s; animation-duration: 2s; }
.star:nth-child(11) { top: 40%; left: 5%; animation-delay: 1.4s; animation-duration: 1.8s; }
.star:nth-child(12) { top: 55%; left: 90%; animation-delay: 0.7s; animation-duration: 2.2s; }

.about-link {
    color: #FF1F6D;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #CC1855;
    text-shadow: 0 0 10px #FF1F6D;
}

.star-icon {
    color: #FF1F6D;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #FF1F6D;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #111;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FF1F6D;
    box-shadow: 0 15px 40px rgba(255, 31, 109, 0.3), 0 0 0 1px rgba(255, 31, 109, 0.1) inset;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-content p {
    color: #ccc;
    font-size: 0.9rem;
}

.highlight {
    color: #FF1F6D;
    text-decoration: underline;
    text-shadow: 0 0 5px #FF1F6D;
}

.price-info {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow-down, .arrow-up {
    color: #FF1F6D;
    font-weight: bold;
    text-shadow: 0 0 5px #FF1F6D;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.service-content {
    position: relative;
}

.lightning-effect {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF1F6D, #CC1855);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px #FF1F6D;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.checkmark {
    color: #FF1F6D;
    font-weight: bold;
    text-shadow: 0 0 5px #FF1F6D;
}

.stats-content {
    text-align: center;
}

.big-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1F6D, #CC1855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(255, 31, 109, 0.5);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.step-card {
    background: #111;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
    position: relative;
}

.step-line {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #fff;
}

.step-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.step-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.step-description {
    color: #999;
    font-size: 0.9rem;
}

.step-icon, .robux-icon {
    color: #FF1F6D;
    font-size: 1.5rem;
    margin-top: 10px;
    text-shadow: 0 0 10px #FF1F6D;
}

/* Undetect Logos Section */
.undetect-logos {
    background: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.undetect-header {
    text-align: center;
    margin-bottom: 60px;
}

.undetect-title {
    font-family: 'Arial Black', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.undetect-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.undetect-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.undetect-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.undetect-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.undetect-logo-item:hover::before {
    left: 100%;
}

.undetect-logo-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.undetect-logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.undetect-logo-item:hover .undetect-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.placeholder-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF1F6D;
    text-align: center;
    padding: 20px;
    border: 2px solid #FF1F6D;
    border-radius: 10px;
    background: rgba(255, 31, 109, 0.1);
    text-shadow: 0 0 10px #FF1F6D;
    transition: all 0.3s ease;
}

.undetect-logo-item:hover .placeholder-logo {
    transform: scale(1.05);
    background: rgba(255, 31, 109, 0.2);
    box-shadow: 0 0 20px rgba(255, 31, 109, 0.3);
}

.support-content {
    text-align: center;
}

.support-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}

.support-icon {
    font-size: 2rem;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 31, 109, 0.3));
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 31, 109, 0.3);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 31, 109, 0.6), transparent);
    opacity: 0.8;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 31, 109, 0.5);
    box-shadow: 0 2px 25px rgba(255, 31, 109, 0.3);
    padding: 10px 0;
}

.navbar.scrolled::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 31, 109, 0.9), transparent);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-logo-img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 31, 109, 0.6));
    transition: all 0.3s ease;
}

.navbar-logo:hover .navbar-logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 31, 109, 0.9));
}

.navbar-logo:hover {
    color: #FF1F6D;
    text-shadow: 0 0 10px rgba(255, 31, 109, 0.6);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF1F6D, rgba(255, 31, 109, 0.8));
    border-radius: 1px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 31, 109, 0.5);
}

.navbar-menu li a:hover {
    color: #FF1F6D;
    text-shadow: 0 0 8px rgba(255, 31, 109, 0.5);
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.navbar-discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.1) 100%);
    border: 1.5px solid rgba(88, 101, 242, 0.5);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.2);
}

.navbar-discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.3), transparent);
    transition: left 0.5s ease;
}

.navbar-discord-btn:hover::before {
    left: 100%;
}

.navbar-discord-btn:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.2) 100%);
    border-color: rgba(88, 101, 242, 0.7);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
}

.navbar-discord-btn span {
    position: relative;
    z-index: 1;
}

.navbar-discord-icon {
    width: 16px;
    height: 16px;
    fill: #5865F2;
    filter: drop-shadow(0 0 6px rgba(88, 101, 242, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.navbar-discord-btn:hover .navbar-discord-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.9));
}

/* Menu MYNX Section */
.menumynx {
    padding: 80px 0 100px 0;
    background: url('background.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    min-height: 60vh;
}

.menumynx-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.menumynx-logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 35px rgba(255, 31, 109, 0.8));
    transition: transform 0.3s ease;
}

.menumynx-logo-img:hover {
    transform: scale(1.05);
}

.menumynx-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    margin-top: -60px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: titleFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 31, 109, 0.3);
    padding-top: 20px;
}

.menumynx-discord-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.discord-simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(88, 101, 242, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(88, 101, 242, 0.4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.discord-simple-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.3), transparent);
    transition: left 0.6s ease;
}

.discord-simple-btn:hover::before {
    left: 100%;
}

.discord-simple-btn:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.7);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5), 0 0 60px rgba(88, 101, 242, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.discord-simple-icon {
    width: 22px;
    height: 22px;
    fill: #5865F2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.6));
    transition: transform 0.3s ease;
}

.discord-simple-btn:hover .discord-simple-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.9));
}

.menumynx-discord {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    margin-bottom: 40px;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
    background: linear-gradient(135deg, #5B6EEF 0%, #4C5BD5 100%);
}

.discord-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

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

.discord-text {
    position: relative;
    z-index: 1;
}

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

.menumynx-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.menumynx-content {
    position: relative;
    z-index: 2;
}

.menumynx-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.menumynx-img {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: imagePulse 4s ease-in-out infinite;
}

@keyframes imagePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }
}

.menumynx-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.placeholder-interface {
    background: #111;
    border: 2px solid #FF1F6D;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: imagePulse 4s ease-in-out infinite;
}

.placeholder-interface h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: #FF1F6D;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #FF1F6D;
}

.placeholder-interface p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.interface-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.interface-item {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF1F6D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #FF1F6D;
}

.interface-item:hover {
    background: rgba(255, 31, 109, 0.1);
    border-color: #FF1F6D;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 31, 109, 0.3);
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    font-family: 'Exo 2', sans-serif;
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Rajdhani', 'Audiowide', 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 31, 109, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-brand-logo {
    filter: drop-shadow(0 0 15px rgba(255, 31, 109, 0.6));
    transform: scale(1.05);
}

.footer-logo span {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 31, 109, 0.3);
}

.footer-brand p {
    font-family: 'Exo 2', sans-serif;
    color: #FF1F6D;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-tagline {
    margin-top: 10px;
}

.tagline-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.footer-nav h4,
.footer-features h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-nav ul,
.footer-features ul {
    list-style: none;
}

.footer-nav li,
.footer-features li {
    margin-bottom: 8px;
}

.footer-nav a,
.footer-features a {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-nav a:hover,
.footer-features a:hover {
    color: #FF1F6D;
}

.footer-social h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.discord-widget-container {
    margin-bottom: 25px;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.discord-widget {
    background: linear-gradient(135deg, #2C2F33 0%, #23272A 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.1), transparent);
    transition: left 0.6s ease;
}

.discord-widget:hover::before {
    left: 100%;
}

.discord-widget:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.discord-widget-icon {
    width: 48px;
    height: 48px;
    fill: #5865F2;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
    flex-shrink: 0;
}

.discord-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.discord-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.discord-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.discord-join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-join-btn:hover::before {
    left: 100%;
}

.discord-join-btn:hover {
    background: linear-gradient(135deg, #5B6EEF 0%, #4C5BD5 100%);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.discord-arrow {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.discord-join-btn:hover .discord-arrow {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #FF1F6D;
    background: rgba(255, 31, 109, 0.1);
    border-color: rgba(255, 31, 109, 0.3);
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.social-btn {
    font-family: 'Exo 2', sans-serif;
    background: #FF1F6D;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    box-shadow: 0 0 10px rgba(255, 31, 109, 0.3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.social-btn:hover {
    background: #CC1855;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 31, 109, 0.5);
}

.telegram-btn {
    background: #3B82F6;
}

.telegram-btn:hover {
    background: #2563eb;
}

.social-description {
    font-family: 'Exo 2', sans-serif;
    color: #666;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright p {
    font-family: 'Exo 2', sans-serif;
    color: #666;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-developed {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-developed p {
    font-family: 'Exo 2', sans-serif;
    color: #666;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
}

.mynxteam-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mynxteam-logo:hover {
    transform: scale(1.05);
}

.mynxteam-img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    filter: drop-shadow(0 0 5px rgba(255, 31, 109, 0.3));
    transition: all 0.3s ease;
}

.mynxteam-logo:hover .mynxteam-img {
    filter: drop-shadow(0 0 10px rgba(255, 31, 109, 0.6));
}

.mynxteam-logo span {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FF1F6D;
    letter-spacing: 0.02em;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .navbar-menu {
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-discord-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    
    
    .features-title, .support-title {
        font-size: 2rem;
    }
    
    
    .feature-card {
        padding: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
}
