/* ========================================
   POKELENSTCG - STYLE GUIDE
   Premium, Minimal, Geometric
   ======================================== */

/* CSS Variables - Paleta de cores */
:root {
    /* Cores primaias */
    --primary: #fff9ec;
    --primary-dark: #2596be;
    --accent: #2596be;
    --bg-light: #2596be;
    --bg-dark: #2596be;

    --nav-bg:#2596be;

    --bg-ground: #b1b1b1;

    /*
    --aa: #2596be;
    --aa: #fd4344;
    --aa: #013e3a;
    --aa: #003e3a;
    --aa: #fff9ec;
    */
    
    /* Tons neutros - Dark Mode */
    --text-dark: #ffffff;
    --text-light: #ffffff;
    --border-color: rgba(37, 150, 190, 0.3);
    
    /* Espaciamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Tipografia */
    --font-display: 'Sohne', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Efeitos */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
    
    /* TransiÃ§Ãµes */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-ground);
    background-image: url('/images/hexagon-background.png');
    background-size: 740px 488px;
    background-attachment: fixed;
    background-position: 0 0;
    background-repeat: repeat;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Overlay subtle para melhor legibilidade do texto */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        135deg,
        rgba(20,20,20,0.82) 0%,
        rgba(35,35,35,0.85) 50%,
        rgba(20,20,20,0.82) 100%
    );

    pointer-events: none;
    z-index: -1;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 150, 190 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* NAVBAR */

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    height: 70px;
}



.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.nav-links {
    color: #ffffff;
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-normal);
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: var(--spacing-md);
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 150, 190 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.logo-image{
    width:40px;
    height:40px;
    object-fit:contain;
    border-radius:10px;
}

.hero-text {
    padding-right: var(--spacing-xl);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8ff8f5  0%, #399491 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.hero-tagline {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.125rem;
    color: #c0e9e7;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #2596be;
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    perspective: 1000px;
    animation: float 3s ease-in-out infinite;
}

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

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-content {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
}

.placeholder-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

/* Decorative elements */
.hex-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.hex-1 {
    width: 400px;
    height: 400px;
    border: 2px solid var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10%;
    left: -200px;
}

.hex-2 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 10%;
    right: -150px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

/* ========================================
   OFFLINE FEATURE SECTION
   ======================================== */

.offline-feature {
    
    padding: var(--spacing-xs) 0;
    background-color: #2596be;
    border-top: 1px solid rgba(37, 150, 190 0.2);
    border-bottom: 1px solid rgba(37, 150, 190 0.2);
}

.offline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.offline-content h2 {
    margin-top: var(--spacing-sm);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.offline-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.offline-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom: var(--spacing-sm);
}


.offline-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    align-items: flex-start;
    color: #ffffff;
}

.check {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.offline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-placeholder {

    width: 260px;

    height: 520px;

    background: linear-gradient(
        135deg,
        rgba(37, 150, 190, 0.20) 0%,
        rgba(37, 150, 190, 0.08) 100%
    );

    border: 2px solid rgba(37, 150, 190, 0.35);

    border-radius: 10px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 12px 32px rgba(0,0,0,.25),
        0 0 18px rgba(37,150,190,.12);
}

.feature-placeholder img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.placeholder-icon-large {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .offline-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
}

.section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    color: #8ff8f5;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}






/* SCREENSHOT */

.screenshot-item{

    display:flex;

    justify-content:center;

    transition:all .35s ease;
}

.screenshot-item:hover{

    transform:translateY(-4px);
}

.screenshot-placeholder{

    width:240px;

    height:480px;

    border-radius:30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#8ff8f5;

    font-weight:600;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* FEATURE CARD */
/* ========================================
   FEATURES SHOWCASE
   ======================================== */

.features-showcase{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:28px 20px;

    margin-top:50px;
    margin-bottom: 40px;
}

.feature-group{

    display:flex;

    flex-direction:column;

    gap:14px;
}

/* SCREENSHOT */

.screenshot-item img{

    width:234px;

    height:468px;

    object-fit:cover;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 10px 24px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.screenshot-item:hover{

    transform:translateY(-4px);
}

.screenshot-placeholder{

    width:234px;

    height:468px;


    border-radius:10px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#8ff8f5;

    font-weight:600;

    box-shadow:
        0 10px 24px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* FEATURE CARD */

.feature-card{

    background:rgba(37,150,190,.14);

    padding:18px;

    border-radius:18px;

    text-align:center;

    transition:all .35s ease;

    border:1px solid rgba(37,150,190,.22);

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}

.feature-card:hover{

    transform:translateY(-4px);

    background:rgba(37,150,190,.22);

    border-color:rgba(37,150,190,.55);

    box-shadow:
        0 12px 34px rgba(37,150,190,.18),
        0 0 18px rgba(37,150,190,.14);
}

.feature-icon{

    font-size:2rem;

    color:#8ff8f5;

    margin-bottom:12px;
}

.feature-card h3{

    color:#ffffff;

    font-size:1.05rem;

    margin-bottom:10px;
}

.feature-card p{

    color:#cdeff5;

    font-size:.90rem;

    line-height:1.5;

    margin-bottom:0;
}

/* TABLET */

@media (max-width: 1200px){

    .features-showcase{

        grid-template-columns:repeat(2, 1fr);
    }
}

/* MOBILE */


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



/* ========================================
   DOWNLOAD SECTION
   ======================================== */

.download {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-light);
}

.download .section-title,
.download .section-subtitle {
    color: var(--text-light);
}

.download .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.download-btn-small{
    padding:12px 18px;
    transform:scale(.88);
}

.download-btn-small .store-icon{
    width:32px;
    height:32px;
}

.download-btn-small strong{
    font-size:1rem;
}

.download-btn-small small{
    font-size:.72rem;
}

.btn-store-icon{
    width:28px;
    height:28px;
    object-fit:contain;
}

.btn-store-icon-small{
    width:22px;
    height:22px;
}

.btn-disabled{
    border-color:rgba(253,67,68,.5);
    background:rgba(253,67,68,.08);
}

.btn-disabled small{
    display:block;
    font-size:.65rem;
    color:#fd4344;
    line-height:1;
}

.btn-disabled span{
    font-size:.95rem;
    font-weight:600;
}

.btn-text-group{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.1;
}

.store-icon{
    width:40px;
    height:40px;
    object-fit:contain;
    flex-shrink:0;
}

.store-text small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.disabled-store{
    background:rgba(47, 41, 41, 0.15);
}

.disabled-store small{
    
    color:#fd4344;
    font-weight:600;
}

.disabled-store:hover{
    background:rgba(253,67,68,.15);
    border-color:#fd4344;
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */

.community {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}



.social-icon-img{
    object-fit:contain;
    width:36px;
    height:36px;
    margin-bottom:14px;
}

.social-card {
    background: white;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding:24px 18px;
    border-radius:18px;
}

.social-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.social-card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

.social-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}





.socials-grid{
    display:grid;
    grid-template-columns:repeat(2, 220px);
    justify-content:center;
    gap:var(--spacing-lg);
}





.social-card h3{
    font-size:1rem;
    margin-bottom:0;
}

@media (max-width: 768px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .social-card,
    .screenshot-item {
        opacity: 0;
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .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; }
    
    .social-card:nth-child(1) { animation-delay: 0.1s; }
    .social-card:nth-child(2) { animation-delay: 0.2s; }
    .social-card:nth-child(3) { animation-delay: 0.3s; }
}

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

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .footer {
        display: none;
    }
}

/* ========================================
   DARK MODE OVERRIDES - Final Adjustments
   ======================================== */

/* Screenshots */
.screenshots {
    background-color: transparent !important;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, rgba(37, 150, 190 0.2) 0%, rgba(37, 150, 190, 0.15) 100%) !important;
    border-color: rgba(37, 150, 190 0.4) !important;
    color: #8ff8f5 !important;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.6) 0%, rgba(37, 150, 190, 0.5) 100%) !important;
    border-top: 1px solid rgba(37, 150, 190 0.2);
    border-bottom: 1px solid rgba(37, 150, 190 0.2);
}

.download .section-title {
    color: #ffffff !important;
}

.download .section-subtitle {
    color: #8ff8f5 !important;
}

/* Community Section */
.community {
    background-color: rgba(48, 48, 48, 0.3) !important;
    border-top: 1px solid rgba(37, 150, 190 0.2);
}

.social-card {
    background: rgba(37, 150, 190, 0.4) !important;
    border: 1px solid rgba(37, 150, 190 0.3) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.social-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 40px rgba(37, 150, 190 0.4) !important;
    background: rgba(37, 150, 190, 0.6) !important;
}

.social-card h3 {
    color: #ffffff !important;
}

.social-card p {
    color: #8ff8f5 !important;
}

/* Footer */
.footer {
    background-color: rgba(8, 8, 8, 0.9) !important;
    border-top: 1px solid rgba(37, 150, 190 0.2);
}

.footer-section h4 {
    color: #8ff8f5 !important;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section a:hover {
    color: #8ff8f5 !important;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Links & Hover States */
a {
    color: #8ff8f5 !important;
}

a:hover {
    color: #ffffff !important;
}

p {
    color: rgba(255, 255, 255, 0.9);
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Decorative Elements */
.hex-decoration {
    opacity: 0.08 !important;
}

/* Phone Mockup - Better contrast */
.phone-frame {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}



.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #2596be;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        display: none;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

}
/* ========================================
   MOBILE FIXES
   ======================================== */

@media (max-width: 768px){

    /* CONTAINER */

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:40px 0;
    }

    .hero-content{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;
    }

    .hero-text{
        padding-right:0;
    }

    .hero-title{
        font-size:2.4rem;
        line-height:1.1;
    }

    .hero-tagline{
        font-size:1.2rem;
    }

    .hero-description{
        font-size:1rem;
        max-width:none;
    }

    /* BUTTONS */

    .cta-buttons{

        flex-direction:column;

        align-items:center;
    }

    .btn{

        width:100%;

        justify-content:center;

        max-width:320px;
    }

    /* PHONE MOCKUP */

    .phone-mockup{

        width:210px;

        height:420px;
    }

    /* OFFLINE SECTION */

    .offline-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

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

    .offline-list li{
        font-size:.95rem;
    }

    .feature-placeholder{

        width:210px;

        height:420px;
    }

    /* FEATURES */

    .features-showcase{

        grid-template-columns:1fr;

        gap:40px;
    }

    .feature-group{
        align-items:center;
    }

    .screenshot-item img{

        width:210px;

        height:420px;
    }

    .feature-card{

        width:100%;

        max-width:320px;
    }

    /* DOWNLOAD */

    .download-buttons{

        flex-direction:column;

        align-items:center;
    }

    .download-btn{

        width:100%;

        max-width:320px;

        justify-content:center;
    }

    /* FOOTER */

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;
    }

}