@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

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

:root {
    --electric-blue: #17E9FC;
    --lemon-lime: #F0FF1E;
    --rose: #FF1F6D;
    --white: #FFFFFF;
    --anti-flash-white: #EEEEEE;
    --gunmetal: #1F2629;
    --eerie-black: #131819;
    --primary-color: #17E9FC;
    --dark-bg: #131819;
    --dark-surface: #1F2629;
    --text-primary: #FFFFFF;
    --text-secondary: #b0b0b0;
    --gradient-bg: linear-gradient(135deg, #131819 0%, #1F2629 100%);
}

body {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 400;
    background: var(--eerie-black);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    overflow: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/background design.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100vh;
    opacity: 0.5;
    z-index: -1;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

/* Social Navigation */
.social-nav {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    pointer-events: none;
}

.social-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    background: rgba(19, 24, 25, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-icon.reddit {
    background: #ff4500;
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
}

.social-icon.youtube {
    background: #ff0000;
    color: white;
}

/* Adjust hero section to account for social nav */
.hero {
    padding-top: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    image-rendering: auto;
    image-rendering: smooth;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.cta-nav {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 900;
    background: var(--electric-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: var(--eerie-black);
    transition: transform 0.3s;
}

.cta-nav:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo img {
    height: 200px;
    width: auto;
    max-width: 100%;
    image-rendering: auto;
    image-rendering: smooth;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero h1 {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(-45deg, var(--electric-blue), var(--lemon-lime), var(--rose), var(--electric-blue));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-icon:hover {
    opacity: 1;
    cursor: pointer;
}


.hero-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    min-height: 2rem;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    display: inline-block;
    background: var(--gunmetal);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid var(--electric-blue);
}

.app-preview {
    max-width: 300px;
    margin: 2rem auto;
    background: var(--gunmetal);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--electric-blue);
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: var(--electric-blue);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eerie-black);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: transparent;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features h2 {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 900;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--electric-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gunmetal);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid rgba(23, 233, 252, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--electric-blue);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--eerie-black);
}

.feature-card h3 {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 900;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.email-signup-pill {
    max-width: 300px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.email-pill-input {
    width: 100%;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(31, 38, 41, 0.8);
    color: var(--text-primary);
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.3s;
}

.email-pill-input::placeholder {
    color: var(--text-secondary);
    text-align: center;
}

.email-pill-input:focus {
    outline: none;
    background: rgba(31, 38, 41, 0.8);
}

.stay-updated-btn {
    background: rgba(31, 38, 41, 0.8);
    color: var(--electric-blue);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stay-updated-btn:hover {
    transform: translateY(-2px);
    background: rgba(31, 38, 41, 0.6);
}


/* Contact Logo */
.contact-logo {
    margin-bottom: 1rem;
}

.contact-logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    opacity: 1;
    image-rendering: auto;
    image-rendering: smooth;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Contact Form */
.contact-form {
    max-width: 400px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-input {
    width: 100%;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(31, 38, 41, 0.8);
    color: var(--text-primary);
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.3s;
}

.contact-input::placeholder {
    color: var(--text-secondary);
    text-align: center;
}

.contact-input:focus {
    outline: none;
    background: rgba(31, 38, 41, 0.8);
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
    text-align: left;
}

.contact-textarea::placeholder {
    text-align: left;
}

select.contact-input {
    cursor: pointer;
    text-align-last: center;
    color: var(--text-secondary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path fill="%23b0b0b0" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-left: 3rem;
    padding-right: 3rem;
}

select.contact-input:valid {
    color: var(--text-primary);
}

select.contact-input option {
    background: var(--gunmetal);
    color: var(--text-primary);
}

.textarea-container {
    position: relative;
    width: 100%;
}

.character-counter {
    position: absolute;
    bottom: 8px;
    right: 15px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(31, 38, 41, 0.8);
    padding: 2px 6px;
    border-radius: 10px;
    pointer-events: none;
}

.character-counter.warning {
    color: var(--rose);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.email-signup {
    display: flex;
    max-width: 400px;
    margin: 2rem auto;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--electric-blue);
    border-radius: 25px;
    background: var(--gunmetal);
    color: var(--text-primary);
    transition: border-color 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: var(--lemon-lime);
}

.signup-btn {
    font-family: 'Axiforma', Arial, sans-serif;
    font-weight: 900;
    background: var(--electric-blue);
    color: var(--eerie-black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s;
}

.signup-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: transparent;
    padding: 1rem 0;
    text-align: center;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 0.5rem;
        max-width: 300px;
        margin: 0 auto 1rem;
    }
    
    .footer-links a {
        flex: 1 1 45%;
        text-align: center;
        padding: 0.25rem 0;
    }
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-nav-container {
        gap: 1rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        padding: 10px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-links {
        display: none;
    }

    .hero-logo img {
        height: 120px;
    }

    .hero-icons {
        gap: 1rem;
    }

    .hero-icon {
        width: 32px;
        height: 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .email-signup {
        flex-direction: column;
        align-items: center;
    }

    .email-input, .signup-btn {
        width: 100%;
        max-width: 300px;
    }

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

    .hero-container {
        padding: 0 0.5rem;
    }

    .footer-container {
        padding: 0 0.5rem;
    }

    .features-container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 1rem 0.5rem;
    }

    .email-signup-pill {
        margin: 1rem auto 0;
    }

    .hero-description {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}
