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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(159, 122, 234, 0.03) 50%, transparent 100%);
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.terminal-window {
    width: 700px;
    border-radius: 8px;
    background: #0c0c0c;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.terminal-title {
    color: #cccccc;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) {
    background: #ff5f56;
}

.terminal-dot:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
    background: #27c93f;
}

.terminal-content {
    min-height: 250px;
    padding: 20px;
    background: #0c0c0c;
}

.terminal-line {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.terminal-line.show {
    animation: typeIn 0.3s ease forwards;
}

@keyframes typeIn {
    to { opacity: 1; }
}

.terminal-line .user {
    color: #4af626;
    font-weight: bold;
}

.terminal-line .at {
    color: #ffffff;
}

.terminal-line .host {
    color: #26c6da;
    font-weight: bold;
}

.terminal-line .path {
    color: #7e57c2;
    font-weight: bold;
}

.terminal-line .prompt {
    color: #ffffff;
}

.terminal-line .text {
    color: #b0b0b0;
}

.terminal-line .error {
    color: #f44336;
    font-weight: bold;
}

.terminal-line .success {
    color: #4af626;
    font-weight: bold;
}

.terminal-line .warning {
    color: #ffa726;
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #ffffff;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}



.breach-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
}

.breach-effect.active {
    animation: screenGlitch 0.5s ease;
}

@keyframes screenGlitch {
    0%, 100% { opacity: 0; }
    10%, 30%, 50%, 70%, 90% {
        opacity: 1;
        background: rgba(159, 122, 234, 0.1);
        transform: translate(2px, 2px);
    }
    20%, 40%, 60%, 80% {
        opacity: 1;
        background: rgba(159, 122, 234, 0.1);
        transform: translate(-2px, -2px);
    }
}

.brand-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
}

.brand-reveal.show {
    animation: brandGlitchIn 0.8s ease forwards;
}

@keyframes brandGlitchIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
        filter: blur(10px);
    }
    20% {
        opacity: 1;
        transform: translate(calc(-50% + 10px), -50%) scale(1.1);
    }
    40% {
        transform: translate(calc(-50% - 10px), -50%) scale(0.9);
    }
    60% {
        transform: translate(calc(-50% + 5px), -50%) scale(1.05);
    }
    80% {
        transform: translate(calc(-50% - 5px), -50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}

.brand-reveal .logo-text {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.brand-reveal .logo-line {
    width: 60px;
    height: 2px;
    background: #9f7aea;
    margin: 20px auto 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    opacity: 0;
    animation: navSlideDown 0.6s ease 5s forwards;
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #b794f6;
}

.nav-cta {
    padding: 10px 24px;
    background: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta:hover {
    background: #9f7aea;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    opacity: 0;
    animation: contentFadeIn 1s ease 5s forwards;
}

@keyframes contentFadeIn {
    to { opacity: 1; }
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.intro-text {
    z-index: 1;
    flex: 1;
}

.menu {
    width: 800px;
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    max-height: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-header {
    background: #1a1a1a;
    padding: 14px 20px;
    border-bottom: 2px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.menu-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-subtitle {
    font-size: 11px;
    color: #666666;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-style: italic;
}

.menu-game-select {
    position: relative;
}

.menu-game-select select {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    padding-right: 28px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.menu-game-select select:hover {
    background: #151515;
    border-color: #3a3a3a;
}

.menu-game-select select:focus {
    border-color: #9f7aea;
}

.menu-game-select::after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 8px;
    pointer-events: none;
}

.menu-tabs {
    display: flex;
    background: #0a0a0a;
    border-bottom: 2px solid #1a1a1a;
    overflow-x: hidden;
    flex-wrap: wrap;
    width: 100%;
}

.menu-tab {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #666666;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin: 0;
    flex: 0 1 auto;
    min-width: fit-content;
    position: relative;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}

.menu-tab:hover {
    color: #ffffff;
    background: #151515;
}

.menu-tab:active {
    transform: scale(0.98);
}

.menu-tab.active {
    color: #9f7aea;
    border-bottom-color: #9f7aea;
    background: #151515;
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #9f7aea;
}

.menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background: #0a0a0a;
    min-height: 0;
    max-height: 100%;
    position: relative;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.2s ease;
    width: 100%;
    height: 100%;
}

.menu-panel.active {
    display: block;
}

.menu-category {
    margin-bottom: 20px;
    width: 100%;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-size: 12px;
    font-weight: 700;
    color: #9f7aea;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
}

.menu-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-feature-item {
    padding: 6px 0;
    color: #cccccc;
    font-size: 11px;
    transition: color 0.2s ease;
    margin-bottom: 2px;
    line-height: 1.4;
    width: 100%;
    display: block;
}

.menu-feature-item:hover {
    color: #b794f6;
}

.menu-feature-item::before {
    content: "•";
    color: #9f7aea;
    margin-right: 8px;
    font-weight: bold;
    display: inline-block;
    width: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-content::-webkit-scrollbar {
    width: 8px;
}

.menu-content::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.menu-content::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 0;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #1a1a1a;
    color: #b794f6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 88px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #e0d7ff;
    text-shadow: 0 0 10px #7b68ee, 0 0 20px #7b68ee;
}

.cat-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: baseline;
}

.cat-image {
    width: 60px;
    height: auto;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    display: block;
}

.subtitle {
    font-size: 24px;
    color: #999999;
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 400;
}

.undetected-text {
    font-size: 20px;
    color: #b794f6;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: lowercase;
    text-shadow: 0 0 8px #9f7aea, 0 0 16px #9f7aea;
    letter-spacing: 2px;
}

.buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary:hover {
    background: #8b5cf6;
    color: #ffffff;
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.products {
    padding: 120px 40px;
    background: #0a0a0a;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    color: #9f7aea;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #999999;
    max-width: 600px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-item {
    background: #000000;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.product-item:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    font-size: 48px;
    color: #2a2a2a;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-header {
    background: #1a1a1a;
    padding: 16px;
    border-bottom: 2px solid #2a2a2a;
}

.product-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
    margin: 0;
}

.product-status {
    display: inline-block;
    padding: 3px 8px;
    background: #0a2a0a;
    color: #00ff00;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
}

.product-status.coming-soon {
    background: #2a1a0a;
    color: #ffaa00;
}

.product-desc {
    font-size: 12px;
    color: #999999;
    line-height: 1.5;
    margin: 0;
}

.product-body {
    padding: 16px;
    flex: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.product-features li {
    padding: 6px 0;
    color: #cccccc;
    font-size: 11px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓";
    color: #00ff00;
    margin-right: 8px;
    font-weight: bold;
    font-size: 12px;
}

.product-features-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-features-free,
.product-features-paid {
    width: 100%;
}

.product-features-label {
    font-size: 10px;
    color: #9f7aea;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a1a1a;
}

.product-features-free .product-features-label {
    color: #4af626;
}

.product-features-paid .product-features-label {
    color: #9f7aea;
}

.product-duration {
    padding: 0 16px 12px;
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    position: relative;
}

.product-duration-label {
    font-size: 10px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-duration-options {
    display: flex;
    gap: 6px;
}

.product-duration-btn {
    flex: 1;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #999999;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.product-duration-btn:hover {
    background: #2a2a2a;
    border-color: #3a3a3a;
    color: #ffffff;
}

.product-duration-btn.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: #ffffff;
}

.product-footer {
    padding: 14px 16px;
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price-label {
    font-size: 9px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.product-buy-btn {
    padding: 10px 20px;
    background: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.product-buy-btn:hover {
    background: #9f7aea;
    transform: scale(1.05);
}

.product-buy-btn:disabled {
    background: #2a2a2a;
    color: #666666;
    cursor: not-allowed;
    transform: none;
}

.product-notice {
    margin-top: 12px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid #9f7aea;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-notice.show {
    opacity: 1;
    transform: translateY(0);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(159, 122, 234, 0.8), 0 0 20px rgba(159, 122, 234, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(159, 122, 234, 1), 0 0 30px rgba(159, 122, 234, 0.7);
    }
}

.products-discord-message {
    margin-top: 60px;
    text-align: center;
    padding: 30px 20px;
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-radius: 0;
}

.products-discord-message p {
    font-size: 14px;
    color: #999999;
    margin: 0;
    line-height: 1.6;
}

.products-discord-message a {
    color: #9f7aea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.products-discord-message a:hover {
    color: #b794f6;
    text-decoration: underline;
}

.specs {
    padding: 120px 40px;
    background: #000000;
}

.specs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #1a1a1a;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.spec-item {
    background: #0a0a0a;
    padding: 48px;
    text-align: center;
}

.spec-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.spec-label {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.cta-section {
    padding: 160px 40px;
    background: #8b5cf6;
    text-align: center;
}

.cta-section h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #000000;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 48px;
    color: #000000;
    opacity: 0.8;
}

.cta-section .btn-primary {
    background: #000000;
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: #ffffff;
    color: #000000;
}

footer {
    padding: 80px 40px 40px;
    background: #000000;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: #999999;
    margin: 0;
    font-style: italic;
}

@media (max-width: 1200px) {
    .intro-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        width: 100%;
        max-width: 600px;
        margin-top: 60px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .terminal-window {
        width: 95%;
        max-width: 450px;
    }
    .terminal-header {
        padding: 8px 12px;
    }
    .terminal-title {
        font-size: 11px;
    }
    .terminal-dot {
        width: 10px;
        height: 10px;
    }
    .terminal-content {
        min-height: 200px;
        padding: 16px;
    }
    .terminal-line {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .brand-reveal .logo-text {
        font-size: 48px;
        letter-spacing: 8px;
    }
    .hero h1 {
        font-size: 48px;
    }
    .cat-image {
        width: 40px;
    }
    .subtitle {
        font-size: 18px;
    }
    .undetected-text {
        font-size: 16px;
    }
    .buttons {
        flex-direction: column;
    }
    .products-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 36px;
    }
    .nav-links {
        display: none;
    }
    .cta-section h2 {
        font-size: 36px;
    }
}

