    .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            padding: 1.5rem 0;
            position: relative;
            z-index: 100;
        }

        .hdr {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--g-branding);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-sub {
            font-size: 0.85rem;
            color: var(--light-text);
            opacity: 0.6;
            font-weight: 400;
            margin-left: 0.5rem;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            opacity: 1;
            color: var(--branding);
        }

        /* Top Banner */
        .top-banner {
            background: var(--card-bg);
            border-bottom: 1px solid var(--simple-color);
            padding: 0.75rem 0;
        }

        .banner-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
        }

        .banner-text {
            opacity: 0.9;
        }

        .banner-cta {
            background: var(--g-branding);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            transition: transform 0.2s ease;
        }

        .banner-cta:hover {
            transform: translateY(-1px);
        }

        /* Hero */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            max-width: 600px;
        }

        .tag {
            font-size: 0.9rem;
            color: var(--branding);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .highlight {
            background: var(--g-branding);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .desc {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .btn-primary {
            background: var(--g-branding);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 176, 155, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light-text);
            border: 1px solid var(--simple-color);
        }

        .btn-secondary:hover {
            border-color: var(--branding);
            color: var(--branding);
        }

        .soon {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--branding);
            color: var(--background);
            font-size: 0.7rem;
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            font-weight: 600;
        }

        /* Claim Section */
        .claim {
            padding: 4rem 0;
            background: var(--background);
            border-right:3px dashed var(--simple-color);
            border-bottom:3px dashed var(--simple-color);
            border-radius:0px 0px 20px 0px;
            width:96%;
            margin:10px auto;
            max-width:1300px;
        }

        .claim-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .gallery {
            position: relative;
            height: auto;
            padding:2px;
            background: transparent;
            border-radius: 16px;
            border: 3px dashed var(--simple-color);
            overflow: hidden;
        }

        .gallery-container {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .gallery-item {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
        }

        
.img-placeholder {
    width: 100%;
    height: 100%;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
   object-fit: contain;
    border-radius: 15px;
}


        .gallery-nav {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        .nav-btn {
            background: transparent;
            border: none;
            color: var(--light-text);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.3rem;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .nav-btn:hover {
            background: var(--simple-color);
            color: var(--branding);
        }

        .gallery-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--simple-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--branding);
            transform: scale(1.2);
        }

        .claim-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .claim-content p {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .link-builder {
            background: var(--card-bg);
            border: 1px solid var(--simple-color);
            border-radius: 12px;
            padding: 0.9rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .link-preview {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            font-family: 'Monaco', monospace;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            padding:0.7rem;
            background: var(--background);
            border-radius: 8px;
            border: 1px solid var(--simple-color);
        }

        .link-preview i {
            color: var(--branding);
        }

        .link-preview span:first-of-type {
            color: var(--light-text);
            opacity: 0.7;
        }

        .user-slug {
            color: var(--branding);
            font-weight: 600;
        }

        .link-hint {
            font-size: 0.9rem;
            opacity: 0.6;
            margin-bottom: 1.5rem;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        .link-sub {
            font-size: 0.85rem;
            opacity: 0.6;
            margin-top: 0.5rem;
        }

        /* API Section */
        .api-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(0, 176, 155, 0.05), rgba(150, 201, 61, 0.05));
        }

        .api-content {
            background: var(--card-bg);
            border: 1px solid var(--simple-color);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .api-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--g-branding);
        }

        .api-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .api-icon {
            width: 60px;
            height: 60px;
            background: var(--simple-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--branding);
        }

        .api-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .api-desc {
            opacity: 0.7;
            font-size: 1rem;
        }

        .api-badge {
            margin-left: auto;
            background: var(--g-branding);
            padding: 0.4rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--light-text);
        }

        .api-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .api-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--background);
            border-radius: 8px;
            border: 1px solid var(--simple-color);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .api-item i {
            color: var(--branding);
            font-size: 1.2rem;
        }
        /* Features */
        .features {
            padding: 5rem 0;
             border-left:3px dashed var(--simple-color);
            border-bottom:3px dashed var(--simple-color);
            border-radius:0px 0px 0px 20px;
            width:96%;
            margin:10px auto;
            max-width:1300px;
        }

        .sect-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .sect-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .sect-desc {
            font-size: 1.1rem;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
        }

      /* Masonry-like Grid */
.feat-grid {
  column-count: 3;          /* 3 columns on large screens */
  column-gap: 2rem;         /* gap between columns */
  width: 100%;
}

/* Cards flow into masonry layout */
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--simple-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  display: inline-block;     /* <-- needed for masonry */
  margin-bottom: 2rem;       /* spacing between stacked cards */
  width: 100%;
  box-sizing: border-box;
}

/* Decorative top border animation */
.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--g-branding);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(150, 201, 61, 0.3);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

/* Icon styles */
.feat-icon {
  width: 60px;
  height: 60px;
  background: var(--simple-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feat-card:hover .feat-icon {
  background: var(--branding);
  color: var(--background);
}

/* Text styles */
.feat-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.feat-desc {
  opacity: 0.7;
  line-height: 1.6;
}

/* Responsive Masonry Columns */
@media (max-width: 1024px) {
  .feat-grid {
    column-count: 2; /* tablets */
  }
}

@media (max-width: 600px) {
  .feat-grid {
    column-count: 2; /* keep 2 columns on mobile */
    column-gap: 1rem;
  }

  .feat-card {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }

  .feat-title {
    font-size: 1.1rem;
  }
}
        /* Stats */
        .stats {
            padding: 4rem 0;
            background: var(--card-bg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--branding);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-grid,
            .claim-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .cta-btns {
                justify-content: center;
            }

            .nav {
                gap: 1rem;
            }

            .banner-content {
                flex-direction: column;
                gap: 0.5rem;
            }

            .vid-holder,
            .gallery {
                height: auto;
            }

            .api-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .api-features {
                grid-template-columns: 1fr;
            }
        }