
   :root {
                --primary-gradient: linear-gradient(180deg, #F9FAFB 0%, #E8F3F9 100%);
                --nav-gradient: linear-gradient(90deg, #E8F3F9 0%, #D9E8EF 100%);
                --surface-color: rgba(0, 0, 0, 0.05);
                --dark-section: #FFFFFF;
                --text-primary: #0A1229;
                --text-secondary: rgba(10, 18, 41, 0.7);
                --accent-color: #0284C7;       
                --logo-yellow: #FFD43B;         
                --logo-yellow-shadow: rgba(255, 212, 59, 0.35);
                --glow-cyan: 0 0 14px rgba(2, 132, 199, 0.25);
                --border-radius: 12px;
                --success-color: #16A34A;       
                --error-color: #DC2626;
                --ink: #0A1229;
                --ink-soft: rgba(10, 18, 41, 0.75);
                --panel: #FFFFFF;
                --panel-border: rgba(2, 132, 199, 0.18);
                --panel-shadow: 0 14px 40px rgba(2, 132, 199, 0.12);
                  


        }


        .darkmode{
             --primary-gradient: linear-gradient(180deg, #0A1229 0%, #164E63 100%);
                --nav-gradient: linear-gradient(90deg, #0A1229 0%, #164E63 100%);
                --surface-color: rgba(255, 255, 255, 0.1);
                --text-primary: #FFFFFF;
                --text-secondary: rgba(255, 255, 255, 0.7);
                --accent-color: #22D3EE;
                --logo-yellow: #FFC600;
                --logo-yellow-shadow: rgba(255,198,0,0.22);
                --dark-section: #071229;
                --border-radius: 12px;
                --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3);
                --success-color: #10B981;
                --error-color: #EF4444;
                --ink: #F9FAFB;                     
                --ink-soft: rgba(255, 255, 255, 0.75); 
                --panel: rgba(10, 18, 41, 0.85);   
                --panel-border: rgba(34, 211, 238, 0.22); 
                --panel-shadow: 0 14px 40px rgba(34, 211, 238, 0.08); 
                        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background: var(--primary-gradient);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-gradient);
            padding: 1rem 2rem;
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        

        .nav-logo {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link.active {
            color: var(--accent-color);
        }
        #devs{
        font-weight: 700;
        overflow: hidden;
         }

        
/* Styling for theme-switch */
         #theme-switch{
            height: 40px;
            width: 40px;
            padding: 0;
            border: 0;
            background-color: var(--nav-gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            
         }
         #theme-switch svg:last-child{
            display: none;
         }
         
         .darkmode #theme-switch svg:first-child{
            display: none;
         }

         .darkmode #theme-switch svg:last-child{
            fill: white ;
            display: block;
         }

/* End of Theme-switch style */
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-primary);
        }

        .hero {
        background: var(--primary-gradient);
        text-align: center;
        padding: 6rem 1rem;
        color: var(--text-primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        }

        .hero .wrap {
        max-width: 900px;
        margin: 0 auto;
        }

        .hero .title {
        font-size: 4rem;
        font-weight: 900;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        color: var(--logo-yellow);
        
        }
        .hero .subtitle {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0;
        }

       
        .hero .tagline {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto 2rem;
        line-height: 1.6;
        }

        
        .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.6rem 0rem;
        font-size: 0.95rem;
        
        transition: all 0.3s ease;
        }

        

        
        .pill .btn {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        background: transparent;
        border: none;
        font-size: 1rem;
        transition: color 0.3s ease;
        }

        .pill .btn:hover {
        color: var(--logo-yellow);
        }

        .logo-dot {
            color: var(--logo-yellow);
            margin-left: 6px;
        }
         #features{
            transition: all 0.2s ease-in;
            background-color:transparent;
            box-shadow: none;
            border-radius: 0;
            padding: 5rem 0;
         }

         .container{
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
         }
         .features-top, .features-container{
            padding: 0 1.5 rem;
         }
         .features-top h1{
            font-size: 2rem;
            font-weight: 800;
            font-size: 2rem;
            margin: 1rem;
            line-height: 1.2;
            text-align: center;
            color:var(--text-primary);
         }
         .features-container{
            display: grid;
            grid-template-columns: 1fr 1fr;
         }

         .feature-item{
            padding: 0.5rem;
            margin: 1rem;
            text-align: center;

         }
         .features-container .feature-item:last-child {
            grid-column: 1 / -1;        
            justify-self: center;     
        }
        .feature-item span{
            font-size: 3.5rem;
            margin-bottom:0.5rem ;
            color: var(--logo-yellow);
        }
        .featureitem-info h4{
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        .featureitem-info h5{
                font-size: 1.1rem;
                color: var(--text-secondary);
             
        }

        .featureitem-info p{
                font-size: 1.05rem;
                color:var(--text-secondary) ;
                line-height: 2rem;
                font-weight:600;
        }

        #how-it-works {
            padding: 4rem 1.5rem;
            border: radius 0;
            background: transparent;
        }

        .how-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .how-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 2rem;
        }

        .how-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }

        .how-step {
            border-radius:0;
            padding: 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .how-step:hover {
            transform: translateY(-4px);
           
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--logo-yellow);
            margin-bottom: 0.5rem;
        }

        .step-text {
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.6;
        }

        /* Responsive tweak */
        @media (max-width: 768px) {
        .how-title {
            font-size: 1.6rem;
        }
        .how-step {
            padding: 1rem;
        }
        }


        /* demo section */
        #demo section{
            background: transparent;
            box-shadow: none;
            border-radius: 0;
            padding: 4rem 1.5rem;
        }
        
        #demo .section-title{
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 2rem;
            text-align: center;
        }
        #demo .shots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
        }
        #demo .shot {
            background: var(--surface-color);
            border: 1px solid var(--accent-color);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 14px rgba(0,0,0,0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-align: center;
            overflow: hidden; /* contain any image/content so it doesn't overflow the card */
        }
        #demo .shot:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(2,132,199,0.15);
        }
        /* placeholder area: keep fixed height but ensure contained image fills it without overflow */
        #demo .ph {
            height: 220px;
            background: rgba(255,255,255,0.08);
            border-bottom: 1px solid var(--accent-color);
            border-top-left-radius: var(--border-radius);
            border-top-right-radius: var(--border-radius);
            overflow: hidden;
            display: block;
            padding: 0;
        }
        /* ensure images inside the placeholder cover the area without stretching layout */
        #demo .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        /* generic shot images (if used outside .ph) should scale down responsively */
        #demo .shot img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        #demo figcaption {
            padding: 12px;
            color: var(--text-secondary);
            font-weight: 600;
        }


        /* Announcements Section */
       #announcements {
            padding: 3rem 2rem;
            margin: 0 auto;
            max-width: 900px;
        }

       
       #announcements .card {
            background: transparent;
            border: none;
            box-shadow: none;
            
            transition: none;
        }

     

        
        #announcements .card-body {
            padding: 2rem;
            text-align: left; 
        }

        
        #announcements .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        #announcements .card-text {
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.6;
            text-indent: 1rem; /* gentle paragraph indent */
            margin-bottom: 1rem;
        }

        /* Date style */
        #announcements time {
            display: block;
            margin-top: 1rem;
            padding-left: 1rem; 
            color: var(--text-primary);
            font-size: 0.9rem;
            opacity: 0.8;
        }

 /* Support FAB & Panel */

        /* FAB with yellow glow + entrance animation */
        .fab {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 18px var(--logo-yellow-shadow);
            border: none;
            cursor: pointer;
            z-index: 2200;
            transform: translateY(8px) scale(0.95);
            opacity: 0;
            animation: fabIn 420ms cubic-bezier(.2,.9,.3,1) forwards 120ms;
        }

        .fab:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 26px var(--logo-yellow-shadow); transform: translateY(0) scale(1); }

        .fab img { width: 60%; height: 60%; object-fit: contain; filter: brightness(0) invert(1); }

        @keyframes fabIn {
            to { transform: translateY(0) scale(1); opacity: 1; }
        }

        /* Support overlay/panel animations */
        .support-overlay {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.0);
            z-index: 2100;
            pointer-events: none;
            visibility: hidden;
            opacity: 0;
            transition: background 220ms ease, opacity 220ms ease;
            backdrop-filter: blur(0px);
        }

        .support-overlay.open {
            background: rgba(0,0,0,0.35);
            pointer-events: auto;
            visibility: visible;
            opacity: 1;
            backdrop-filter: blur(6px);
        }

        .support-panel {
            width: 420px;
            max-width: 92%;
            background: linear-gradient(180deg, #081426, #0b2230);
            border-radius: 12px;
            padding: 20px 20px 24px 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            color: var(--text-primary);
            position: relative;
            border: 1px solid rgba(255,255,255,0.04);
            transform: translateY(-8px) scale(0.96);
            opacity: 0;
            transition: transform 220ms cubic-bezier(.2,.9,.3,1), opacity 220ms ease;
        }

        .support-overlay.open .support-panel {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .support-close { position: absolute; right: 12px; top: 10px; background: none; border: none; color: var(--text-secondary); font-size: 22px; cursor: pointer; }

        .support-panel h2 { margin: 0 0 8px 0; color: var(--logo-yellow); font-size: 1.25rem; }

        .support-panel p { color: var(--text-secondary); margin-bottom: 12px; }

        .support-panel .mini-form input, .support-panel .mini-form textarea { width: 100%; padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.03); color: var(--text-primary); margin-bottom: 10px; }

        .support-panel .mini-form button { width: 100%; padding: 10px; border-radius: 8px; border: none; background: var(--accent-color); color: #012; font-weight: 700; cursor: pointer; }

        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
        .footer {
        background: var(--dark-section, #0A1229);
        color: var(--text-secondary);
        width: 100%;
        padding: 4rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        }

        .footer-col h4 {
        color: var(--text-primary);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        }

        .footer-col .links {
        list-style: none;
        padding: 0;
        }

        .footer-col .links li {
        margin-bottom: 0.6rem;
        }

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

        .footer-col .links a:hover {
        color: var(--accent-color);
        }

        .footer-col p {
        margin: 1rem 0;
        max-width: 320px;
        color: var(--text-secondary);
        }

        .footer-col form {
        display: flex;
        gap: 0.5rem;
        }

        .footer-col input {
        flex: 1;
        height: 40px;
        border-radius: var(--border-radius);
        border: 1px solid var(--accent-color);
        background: transparent;
        color: var(--text-primary);
        padding-left: 10px;
        outline: none;
        }

        .footer-col input::placeholder {
        color: var(--text-secondary);
        }

        .footer-col form button {
        background: var(--accent-color);
        border: none;
        color: #012;
        font-weight: 600;
        border-radius: var(--border-radius);
        padding: 0 1rem;
        cursor: pointer;
        transition: 0.2s ease;
        }

        .footer-col form button:hover {
        filter: brightness(1.1);
        }

        .footer-col .icons {
        display: flex;
        gap: 20px;
        margin-top: 1.5rem;
        }

        .footer-col .icons i {
        color: var(--text-secondary);
        font-size: 1.1rem;
        transition: color 0.2s ease;
        }

        .footer-col .icons i:hover {
        color: var(--accent-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-col form {
            flex-direction: column;
        }

        .footer-col form input,
        .footer-col form button {
            width: 100%;
        }
        }
                .join-btn {
        display: inline-block;
        background: var(--accent-color);
        color: white;
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--border-radius);
        padding: 10px 16px;
        margin-top: 10px;
        transition: filter 0.2s ease;
        }

        .join-btn:hover {
        filter: brightness(1.1);
        }
