html {
    scroll-behavior: smooth;
}
  
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: black;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    padding: 0;
}
  
#radial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}
  
.background-glow {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        circle,
        rgba(102, 106, 219, 0.15) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}
  
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 1;
    position: relative;
}
  
nav a {
    margin: 0 1rem;
    font-family: 'Satoshi', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: rgb(102, 106, 219);
}
  
.logo {
    height: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #C985E5;
}

h2 {
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 10px 0 20px;
    color: white;
}

h3 {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 20px 0;
    color: white;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    background-color: #f0f0f000;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.stats-container {
    display: flex;
    margin: 40px 0;
    justify-content: space-between;
}

.stat-column {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.highlight-text {
    margin: 20px 0 30px;
}

.highlight-text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: white;
}

hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 30px 0;
}

.finding-card {
    display: flex;
    gap: 2rem;
    margin: 60px 0;
    align-items: center;
}

.finding-card.reverse {
    flex-direction: row-reverse;
}

.finding-content {
    flex: 1;
}

.finding-image {
    flex: 1;
}

.finding-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote {
    font-style: italic;
    padding: 15px;
    background: rgba(102, 106, 219, 0.1);
    border-left: 3px solid rgb(102, 106, 219);
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.feature-item h3 {
    color: rgb(102, 106, 219);
    margin-top: 10px;
}

ul {
    margin: 20px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

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

.recommendation-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.rec-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgb(102, 106, 219);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-link {
    background: none;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-link:hover {
    background: rgba(102, 106, 219, 0.2);
    border-color: rgb(102, 106, 219);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

img[data-lightbox] {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

img[data-lightbox]:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .finding-card, 
    .finding-card.reverse {
        flex-direction: column;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-column {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}

/* Slideshow styles */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 1rem 0;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.slide {
  display: none;
  width: 100%;
  animation: fade 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

.slideshow-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.slide-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  margin-bottom: 15px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.slide-dot.active, .slide-dot:hover {
  background-color: #ff8cd6;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
  color: #ff8cd6;
}