 /* ======= BASE STYLES ======= */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #A250A0;
            --primary-dark: #7C3C7A;
            --secondary: #61dafb;
            --accent: #FA60A8;
            --light: #F8F5FC;
            --dark: #160a3d;
            --success: #71cf87;
            --error: #ff9a6e;
            --border-radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        body {
            background: #f8f5fc;
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ======= HEADER ======= */
       /* Modern, Non-Chunky Header */
.header {
  margin: 0 0 2.5rem 0;
  padding: 0;
  position: relative;
}

.header h1 {
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}

.title-part {
  display: inline-block;
}

.title-part.accent {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.15rem;
  position: relative;
}

/* Subtle underline effect (no animation) */
.title-part.accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(250, 96, 168, 0.2));
}

.header-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.75rem 0;
}

.subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.25rem 0 0 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.fuggles-regular {
  font-family: "Fuggles", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
        /* ======= MAIN LAYOUT GRID ======= */
        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* ======= MODULE STYLES ======= */
        .module {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px;
            transition: transform 0.3s ease;
        }

        .featured-module {
            grid-column: 1;
            border-top: 6px solid var(--accent);
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        .standard-module {
            border-top: 4px solid var(--primary);
        }

        .module:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

.module-title {
font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
            border-bottom: 2px solid #f0f0f0;
        }
.module-title-founder {
font-size: 1.85rem;
color:#7C3C7A;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
            border-bottom: 2px solid #ffffff;
        }
        

        .module-title i {
            font-size: 1.8rem;
        }

        /* ======= FEATURED CONTENT ======= */
        .featured-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            flex-grow: 1;
        }

        .featured-video {
            background: #eee;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-video i {
            font-size: 3rem;
            color: var(--primary);
        }

        .featured-details {
            display: flex;
            flex-direction: column;
        }

        /* ======= BUTTON STYLES ======= */
        .cta-button-container {
            margin-top: auto;
            padding-top: 20px;
        }
        .bi-play-circle{
            cursor: pointer;
        }
        .cta-pulse-button {
            position: relative;
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 50px;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(162, 80, 160, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: center;
        }

        /* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-divider-animate {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Fallback solid color */
  background-color: #f5ddc9;
}

.section-divider-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradient with the colors you want */
  background: linear-gradient(
    90deg,
    rgba(220, 50, 169, 0) 0%,
    rgba(220, 50, 169, 1) 20%,
    rgba(126, 25, 148, 1) 40%,
    rgba(247, 190, 190, 1) 60%,
    rgba(148, 0, 211, 1) 80%,
    rgba(220, 50, 169, 0) 100%
  );
  
  /* Animation properties */
  animation: shimmer 9s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}
.site-footer p {
      margin-top:-15px;
      font-size: 16px;
      color: rgba(107, 11, 190, 0.9);
    }
.copyright {
      
      font-size: 12px;
      bottom: 0px;
    color: rgba(107, 11, 190, 0.9);
}

/* Popup Styles */
#tip-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.3s ease-out;
    max-width: 300px;
    border: 1px solid var(--primary);
}

#tip-popup.show {
    transform: translateY(0);
}

.popup-content {
    position: relative;
    text-align: center;
}
a{
    text-decoration: none;
}
.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid white;
}

.floating-robot {
    margin: -50px auto 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
 .cta-pulse-button2 {
            position: relative;
            display: inline-block;
            padding: 5px 10px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 50px;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(162, 80, 160, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: center;
        }

        .cta-pulse-button3 {
            position: relative;
            margin-left:auto;
            margin-right:auto;
            display: inline-block;
            padding: 5px 10px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 50px;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(162, 80, 160, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 50%;
            text-align: center;
        }
        /* Add these styles to your existing CSS */

/* Founders badge module */
.founders-badge-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(162, 80, 160, 0.1) 0%, rgba(250, 96, 168, 0.1) 100%);
    border-top: 4px solid var(--accent);
    margin-top:25px;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 25px;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #A250A0;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.module-title{
    display:flex;
    flex-direction: column;
}
.limited-badge {
            background: #FFD700;
            color: #000;
            font-weight: bold;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
.badge-container {
    margin: 1.5rem 0;
    position: relative;
    width: auto;
}

.badge-frame {
    width: auto;
    height: 200px;
    border-radius: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 8px rgba(162, 80, 160, 0.2),
        0 0 0 16px rgba(250, 96, 168, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.badge-frame:hover {
    transform: scale(0.85) ;
}

.badge-image {
    width: 90vw;
    height: 80%;
    object-fit: contain;
}


.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
    transform: translateY(-3px);
}



        /* ======= RESPONSIVE ======= */
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-content {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive adjustments */
@media (max-width: 768px) {
    .badge-frame {
        width: 150px;
        height: 150px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1.2rem;
    }
}