/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffeb3b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffeb3b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffeb3b;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navbar */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}



/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: black;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION - Full Width Video
======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 3rem 2.5rem;
    max-width: 800px;
    margin: 0 2rem;
    
    /* GLASSMORPHISM EFFECT */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
    color: rgb(245, 99, 9);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* ========================================
   HEADER SECTION - Full Width Banner
======================================== */
.header-section {
    width: 100%;
    background: radial-gradient(circle at center, rgba(255, 149, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.header-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========================================
   INPUT SECTION - Full Width
======================================== */
.input-section-full {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.input-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-align: center;
}

.input-group input {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s ease;
    text-align: center;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: #ffeb3b;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2);
}

.generate-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    background: rgba(212, 116, 0, 0.8);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.generate-btn:hover {
    background: rgba(184, 42, 168, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 42, 168, 0.6);
}

.generate-btn:active {
    transform: translateY(0);
}

/* ========================================
   RESULTS SECTION - Full Width
======================================== */
.results-section-full {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.results-section-full.show {
    display: block;
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header h2 {
    font-size: 2rem;
    color: #ffeb3b;
}

.copy-btn {
    padding: 12px 24px;
    font-size: 1rem;
    color: white;
    background: rgba(76, 175, 80, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.copy-btn:hover {
    background: rgba(76, 175, 80, 0.8);
    transform: translateY(-2px);
}

.hashtag-output {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    min-height: 150px;
    margin-bottom: 1.5rem;
    line-height: 2.2;
    font-size: 1.05rem;
    word-wrap: break-word;
    color: white;
}

.hashtag-count {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
}


/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #ffeb3b;
    text-align: center;
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* About Section Mobile */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    align-items: start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffeb3b;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p a {
    color: #ffeb3b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom p a:hover {
    color: white;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffeb3b;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MOBILE RESPONSIVENESS
======================================== */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Header Section */
    .header-section {
        padding: 4rem 1.5rem;
        min-height: 250px;
    }
    
    .header-content {
        padding: 1.5rem 1rem;
    }
    
    .header-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Input Section */
    .input-section-full {
        padding: 3rem 1rem;
    }
    
    .input-container {
        padding: 2rem 1.5rem;
    }
    
    .input-group label {
        font-size: 1.1rem;
    }
    
    .input-group input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .generate-btn {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Results Section */
    .results-section-full {
        padding: 3rem 1rem;
    }
    
    .results-container {
        padding: 2rem 1.5rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .results-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .hashtag-output {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
    }
    
    .input-group label {
        font-size: 1rem;
    }
    
    .generate-btn {
        font-size: 1rem;
    }
}

/* ========================================
   SHARE SECTION
======================================== */
.share-section {
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.share-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.twitter-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.twitter-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.linkedin-btn {
    background: rgba(10, 102, 194, 0.6);
    color: white;
}

.linkedin-btn:hover {
    background: rgba(10, 102, 194, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.facebook-btn {
    background: rgba(24, 119, 242, 0.6);
    color: white;
}

.facebook-btn:hover {
    background: rgba(24, 119, 242, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

/* Mobile Share Buttons */
@media screen and (max-width: 768px) {
    .share-section {
        padding: 2rem 1rem;
    }
    
    .share-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works-section {
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.how-container h2 {
    font-size: 2.5rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.how-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

.step-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* How It Works Mobile */
@media screen and (max-width: 968px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 1.5rem;
    }
    
    .how-container h2 {
        font-size: 2rem;
    }
    
    .how-subtitle {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   BEHIND THE SCENES - ALGORITHM EXPLANATION
======================================== */

/* MAIN CONTAINER */
.behind-scenes {
    margin-top: 100px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* SECTION HEADING */
.behind-scenes h3 {
    font-size: 2rem;
    color: #ffeb3b;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 235, 59, 0.3);
}

/* INTRO PARAGRAPH */
.behind-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* GRID OF ALGORITHM CARDS - Now 2x2 for perfect balance */
.algorithm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* INDIVIDUAL ALGORITHM CARDS */
.algorithm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.algorithm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 235, 59, 0.4);
}

/* EMOJI ICONS IN CARDS */
.algorithm-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

/* CARD HEADINGS */
.algorithm-card h4 {
    font-size: 1.3rem;
    color: #ffeb3b;
    margin-bottom: 12px;
    text-align: center;
}

/* CARD DESCRIPTIONS */
.algorithm-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: center;
}

/* EXAMPLE BOX - Fixed border order */
.algorithm-example {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ff9800;
}

/* EXAMPLE HEADING */
.algorithm-example h4 {
    font-size: 1.4rem;
    color: #ffeb3b;
    margin-bottom: 20px;
}

/* EXAMPLE BREAKDOWN CONTAINER */
.example-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INDIVIDUAL EXAMPLE ITEMS */
.example-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* EXAMPLE LABELS (e.g., "Niche Tags:") */
.example-item strong {
    color: white;
    font-size: 1.05rem;
}

/* EXAMPLE HASHTAGS */
.example-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 10px;
    background: rgba(255, 149, 0, 0.15);
    border-radius: 8px;
    font-style: italic;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

/* ========================================
   MOBILE RESPONSIVE - BEHIND THE SCENES
======================================== */
@media (max-width: 768px) {
    .behind-scenes {
        padding: 40px 25px;
        margin-top: 60px;
    }

    .behind-scenes h3 {
        font-size: 1.5rem;
    }

    .algorithm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .algorithm-example {
        padding: 20px;
    }
}

.stats-banner {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item strong {
    color: #ffeb3b;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        font-size: 1rem;
    }
    
    .stat-item strong {
        font-size: 1.3rem;
    }
}
