@font-face {
    font-family: "Font Awesome 6 Brands Regular";
    src: url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.eot");
    src: url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/840c587995af767e3b9cd09ab83f946d.svg#Font Awesome 6 Brands Regular")format("svg");
}

:root {
    --primary-color: #FF00AA;
    --secondary-color: #FFABE3;
    --bg-color: #150D1B;
    --card-bg: #241A2C;
    --text-color: #FFFFFF;
    --text-secondary: #7B7B7B;
}

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

body {
    background: var(--bg-color);
    font-family: 'Comme', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 23px;
    z-index: 1000;
}

.navbar-container {
    max-width: 1047px;
    height: 59px;
    margin: 0 auto;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 41px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.eclipse-1 {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.brand-name, .brand-name-glow {
    font-family: 'Pixelify Sans';
    font-weight: 500;
    font-size: 31.8476px;
    color: var(--primary-color);
    position: absolute;
    left: 50px;
}

.brand-name {
    z-index: 2;
}

.brand-name-glow {
    filter: blur(5px);
    z-index: 1;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-link {
    font-family: 'Pixelify Sans';
    font-size: 24.3048px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 59px;
}

.discord-btn-nav {
    width: 95.07px;
    height: 31.31px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 170, 0) 0%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Pixelify Sans';
    font-size: 18.1295px;
}

.discord-btn-nav:hover {
    box-shadow: 0 0 15px rgba(255, 0, 170, 0.3);
    transform: translateY(-2px);
}

.hero-section {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.video-container {
    flex: 1;
    min-width: 300px;
    max-width: 591px;
    aspect-ratio: 591/345;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
}

.hero-text, .hero-text-glow {
    font-family: "Font Awesome 6 Brands Regular";
    font-weight: 400;
    font-size: clamp(32px, 5vw, 53.6381px);
    line-height: 1.2;
    letter-spacing: 0.08em;
    position: absolute;
    width: 100%;
}

.hero-text span, .hero-text-glow span {
    color: var(--primary-color);
}

.hero-text span + span, .hero-text-glow span + span {
    color: var(--text-color);
}

.hero-text {
    z-index: 2;
}

.hero-text-glow {
    filter: blur(17.5px);
    z-index: 1;
}

.get-key-btn {
    margin-top: 180px;
    width: 167px;
    height: 55px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Comme';
    font-size: 28.4952px;
}

.features-section {
    margin: 100px 0;
    text-align: center;
}

.features-title {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.feature-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    height: 100%;
    min-height: 327px;
}

.feature-card h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    margin-bottom: 20px;
}

.feature-text {
    background: radial-gradient(50% 50% at 50% 50%, rgba(43, 29, 52, 0.51) 30%, #2B1D34 100%);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 20px;
    font-size: clamp(18px, 2vw, 31.3834px);
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.4;
}

.showcase-section {
    margin: 100px 0;
}

.showcase-video {
    width: 100%;
    max-width: 890.78px;
    aspect-ratio: 890.78/520;
    margin: 0 auto;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    overflow: hidden;
}

.showcase-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.discord-section {
    margin: 100px 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 40px 20px;
    text-align: center;
}

.discord-section h2 {
    font-family: 'Pixelify Sans';
    font-size: clamp(36px, 5vw, 57.8286px);
    margin-bottom: 30px;
}

.discord-container {
    max-width: 749px;
    aspect-ratio: 749/283;
    margin: 0 auto;
    background: radial-gradient(50% 50% at 50% 50%, rgba(43, 29, 52, 0.51) 30%, #2B1D34 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.discord-container .img-container {
    position: relative;
    width: 100%;
    height: auto;
}

.discord-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.discord-btn-large {
    position: absolute;
    left: 35%;
    bottom: 20px;
    width: 189.64px;
    height: 62.46px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 170, 0) 0%, rgba(255, 179, 229, 0.51) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 44px;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Pixelify Sans';
    font-size: clamp(24px, 3vw, 36.166px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-btn-large:hover {
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
}

.divider {
    width: 100%;
    max-width: 1327px;
    height: 4px;
    margin: 40px auto;
    background: linear-gradient(90deg, rgba(36, 26, 44, 0) 0%, var(--primary-color) 50%, rgba(115, 115, 115, 0) 100%);
    border-radius: 126px;
}

.glow-sphere {
    position: fixed;
    width: 574px;
    height: 289px;
    background: var(--secondary-color);
    filter: blur(350px);
    pointer-events: none;
    z-index: -1;
}

.sphere-1 {
    left: 30%;
    top: -92px;
}

.sphere-2 {
    left: -265px;
    top: 70%;
}

.sphere-3 {
    right: -265px;
    top: 40%;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.games-section {
    margin: 100px 0;
    text-align: center;
}

.games-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.game-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: center;
}

.game-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.game-text {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.4;
}

.security-section {
    margin: 100px 0;
    text-align: center;
}

.security-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

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

.security-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.security-feature {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: center;
}

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.security-feature p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.4;
}

.updates-section {
    margin: 100px 0;
    text-align: center;
}

.updates-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.updates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.update-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: left;
}

.update-version {
    font-family: 'Pixelify Sans';
    font-size: clamp(24px, 3vw, 32.6857px);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.update-date {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.update-list {
    list-style: none;
    padding: 0;
}

.update-list li {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.update-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 8px;
}

.comparison-section {
    margin: 100px 0;
    text-align: center;
}

.comparison-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

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

.comparison-table {
    width: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    background: rgba(36, 26, 44, 0.8);
}

.header-cell {
    font-family: 'Pixelify Sans';
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--primary-color);
    padding: 10px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    border-top: 1px solid rgba(255, 171, 227, 0.1);
}

.feature-name {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-color);
    text-align: left;
    padding: 10px;
}

.feature-value {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    padding: 10px;
}

.faq-section {
    margin: 100px 0;
    text-align: center;
}

.faq-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.faq-item {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
}

.question-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.faq-question h3 {
    font-family: 'Comme';
    font-size: clamp(20px, 2.5vw, 24px);
    color: var(--primary-color);
    flex: 1;
}

.arrow {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 30px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 30px 30px;
}

.faq-answer p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.4;
}

.aimbot-section {
    margin: 100px 0;
    text-align: center;
}

.aimbot-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.feature-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: center;
}

.feature-icon, .visuals-icon, .movement-icon, .question-icon, .arrow {
    color: var(--primary-color);
}

.visuals-list li:before {
    color: var(--primary-color);
}

.detail-label {
    color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.visuals-icon {
    font-size: 36px;
}

.movement-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.question-icon {
    font-size: 24px;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.visuals-section {
    margin: 100px 0;
    text-align: center;
}

.visuals-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.visuals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.visuals-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: left;
    display: flex;
    gap: 20px;
}

.visuals-content h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visuals-list {
    list-style: none;
    padding: 0;
}

.visuals-list li {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.visuals-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 8px;
}

.movement-section {
    margin: 100px 0;
    text-align: center;
}

.movement-section h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 40px;
}

.movement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.movement-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    text-align: left;
}

.movement-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.movement-card h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.movement-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
}

.detail-label {
    color: var(--primary-color);
}

.advanced-features {
    margin: 100px 0;
    text-align: center;
    position: relative;
}

.advanced-features .text-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.advanced-features h2 {
    font-family: 'Comme';
    font-size: clamp(32px, 4vw, 47.7714px);
    margin-bottom: 20px;
    color: var(--primary-color);
}

.advanced-features p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.4;
}

.feature-showcase {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.showcase-item {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-icon {
    font-size: 36px;
    color: var(--primary-color);
}

.showcase-item span {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
}

.particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--primary-color) 0%, transparent 60%);
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
    100% { transform: scale(0.8); opacity: 0.1; }
}

.premium-features {
    margin: 100px 0;
    padding: 0 20px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-card {
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 0.5px solid var(--secondary-color);
    backdrop-filter: blur(7.5px);
    border-radius: 22.6087px;
    padding: 30px;
}

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

.premium-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.premium-header h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32.6857px);
    color: var(--primary-color);
}

.premium-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
}

.check-icon {
    color: var(--primary-color);
    font-size: 20px;
}

/* Ultimate Features Section */
.ultimate-features {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
}

.ultimate-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(from 0deg at 50% 50%, 
        var(--primary-color) 0deg,
        transparent 60deg,
        transparent 300deg,
        var(--primary-color) 360deg);
    opacity: 0.15;
    animation: rotate 20s linear infinite;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, var(--primary-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: grid-move 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes grid-move {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

.ultimate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.ultimate-content h2 {
    font-family: 'Comme';
    font-size: clamp(40px, 5vw, 60px);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
}

.ultimate-content p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.feature-rings {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ring {
    width: 180px;
    height: 180px;
    position: relative;
}

.ring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

.ring-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ring-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ring span {
    font-size: 20px;
    color: var(--text-secondary);
}

@keyframes ring-pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* Final Showcase Section */
.final-showcase {
    position: relative;
    margin: 100px 0;
    overflow: hidden;
}

.showcase-wrapper {
    position: relative;
    padding: 60px 20px;
}

.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

.showcase-header h2 {
    font-family: 'Comme';
    font-size: clamp(40px, 5vw, 60px);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.neon-line {
    height: 2px;
    width: 200px;
    margin: 0 auto;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    position: relative;
}

.neon-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    filter: blur(10px);
}

.showcase-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.mega-card {
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, rgba(36, 26, 44, 0) 30%, var(--card-bg) 100%);
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: card-glow 3s ease-in-out infinite;
}

@keyframes card-glow {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    50% { transform: translate(-20%, -20%) rotate(180deg); }
    100% { transform: translate(-30%, -30%) rotate(360deg); }
}

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

.mega-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mega-card h3 {
    font-family: 'Comme';
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mega-card p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.glow-button {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.glow-button:hover {
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-button:hover .button-glow {
    opacity: 0.2;
    animation: button-glow 2s linear infinite;
}

@keyframes button-glow {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(-30%, -30%) rotate(360deg); }
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
}

.grid-line:nth-child(1) {
    top: 0;
    left: 15%;
    width: 1px;
    height: 100%;
    transform: rotate(45deg);
}

.grid-line:nth-child(2) {
    top: 0;
    left: 45%;
    width: 1px;
    height: 100%;
    transform: rotate(-45deg);
}

.grid-line:nth-child(3) {
    top: 0;
    left: 75%;
    width: 1px;
    height: 100%;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
    }

    .hero-section {
        margin-top: 100px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .video-container {
        order: 2;
    }

    .get-key-btn {
        margin: 180px auto 0;
    }

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

    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .header-cell, .feature-name, .feature-value {
        font-size: 16px;
        padding: 8px;
    }

    .showcase-cards {
        grid-template-columns: 1fr;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: auto;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .brand-wrapper {
        justify-content: center;
    }

    .discord-btn-nav {
        width: 100%;
        max-width: 200px;
    }

    .hero-text, .hero-text-glow {
        font-size: 32px;
    }

    .get-key-btn {
        width: 100%;
        max-width: 200px;
    }

    .faq-question {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .faq-answer {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .feature-rings {
        gap: 20px;
    }
    
    .ring {
        width: 150px;
        height: 150px;
    }
    
    .showcase-cards {
        grid-template-columns: 1fr;
    }
}
