:root {
    --primary-green: #a3ff12;
    --dark-bg: #1a1a1a;
    --card-bg: #2a2a2a;
}

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

/* Custom font import - Figtree from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Figtree', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(195 255 0 / 57%) !important;
}

.dropdown-item {
    color: white !important;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    color: rgb(195 255 0 / 57%) !important;
    background-color: transparent !important;
}

.dropdown-menu {
    background-color: black !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
}

.dropdown-item {
    color: white !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 200px !important;
    width: 100% !important;
    display: block !important;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
    font-size: 1.2rem;
    transform: skew(-15deg);
}

.contact-btn {
    font-family: 'Figtree', sans-serif;
    background: var(--primary-green);
    color: black !important;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #8fdc00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(163, 255, 18, 0.3);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: black;
    /* Background image - Replace 'your-image.jpg' with your image path */
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    margin: 0;
    padding: 2rem;
    /* Background removed as requested */
    border-radius: 20px;
    box-shadow: none;
}

.hero-content h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 83.25px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 91.575px */
    letter-spacing: -4.212px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFF 54.17%, #C3FF00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .highlight {
    color: var(--primary-green);
    -webkit-text-fill-color: var(--primary-green);
}

.hero-description {
    font-family: 'Figtree', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.download-btn {
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.download-btn.google-play {
    display: flex;
    width: 198px;
    height: 60px;
    padding: 11px 18px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(195, 255, 0, 0.24);
    background: #000;
    color: white;
}

.download-btn.app-store {
    display: flex;
    width: 198px;
    height: 60px;
    padding: 11px 21px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #C3FF00;
    color: black;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.download-btn.google-play:hover {
    background: #444;
    color: white;
}

.download-btn.app-store:hover {
    background: #8fdc00;
    color: black;
}

.download-icon {
    width: 24px;
    height: 24px;
}

.google-play .download-icon {
    width: 24.873px;
    height: 31.3px;
}

.download-text {
    font-family: 'Figtree', sans-serif;
    display: flex;
    color: #C3FF00;
    width: 104px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.download-btn.app-store .download-text {
    display: flex;
    width: 104px;
    flex-direction: column;
    align-items: flex-start;
    color: black;
}

.download-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #7dd87d);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}
.hand-mob {
    display: none;
}
a.link {
    color: rgb(255 255 255 / 45%);
    text-decoration: none;
}
a.link:hover {
    color: rgb(195 255 0 / 57%);
}

/* Legal Pages Styles */
.legal-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.legal-content {
    background: rgba(42, 42, 42, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.legal-content h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
    margin-bottom: 2rem !important;
}

/* Career Page Styles */
.career-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: black;
}

.career-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    text-align: center;
}

.career-content h1 {
    font-family: 'Figtree', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.career-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.no-openings-message {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(195, 255, 0, 0.2);
    margin-top: 2rem;
}

.icon-container {
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.8;
}

.no-openings-message h2 {
    font-family: 'Figtree', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.no-openings-message p {
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.future-opportunities {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.future-opportunities h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.future-opportunities p {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.future-opportunities ul {
    list-style: none;
    padding: 0;
}

.future-opportunities li {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.future-opportunities li:before {
    content: "•";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(195, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(195, 255, 0, 0.3);
}

.contact-info h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info p {
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: var(--primary-green);
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #8fdc00;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(163, 255, 18, 0.3);
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 60px;
    }
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        background: black !important;
    }
    
    .hero-section {
        padding: 6rem 0 2rem;
        background: black !important;
    }
    
    .career-section {
        background: black !important;
    }
    
    .hero-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .download-buttons {
        justify-content: flex-start;
    }
    
    .download-btn {
        min-width: 180px;
    }
    .hero-content h1 {
        letter-spacing: -1.212px;
        font-size: 60px;
    }
    .hand-mob {
        display: block;
        width: 70%;
    }
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        background-image: none !important;
    }
}

@media (max-width: 576px) {
    body {
        background: black !important;
    }
    
    .hero-section {
        background: black !important;
    }
    
    .career-section {
        background: black !important;
    }
    
    .download-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-content {
        margin: 0.5rem;
        padding: 1rem;
    }
    .floating-circle:nth-child(3) {
        left: 40% !important;
    }
    .hero-description {
        text-align: center ;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    .hero-content h1 {
        font-size: 45px;
        text-align: center;
        margin-bottom: 1rem;
    }
    .hand-mob {
        width: 85%;
    }
    .contact-btn {
        padding: .6rem 1rem;
        font-size: 14px;
    }
    .download-btn.google-play, .download-btn.app-store {
        width: auto;
        padding: 11px;
        font-size: 14px;
        min-width: auto;
        max-width: auto;
    }

    .google-play .download-icon {
        width: 20.873px;
        height: 24.3px;
    }

    .download-icon {
        width: 20px;
        height: 20px;
    }
    a.link {
        font-size: 14px;
    }
}