:root {
    --primary-color: #5856d6;
    --secondary-color: #ff375f;
    --accent-color: #38c1f7;
    --light-bg: rgba(255, 255, 255, 0.15);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(135deg, #5856d6 0%, #7c4dff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
    text-align: center;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Brand title styling */
.brand-title {
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
    width: 100%;
    font-size: 2.2em;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand-title .logo {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    position: relative;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

        .brand-title .logo:hover {
            transform: scale(1.05);
        }

        .trademark {
            font-size: large;
        }

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-button, .register-button {
    padding: 6px 15px;
    font-size: 0.65em;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.login-button {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.login-button:hover {
    background: rgba(88, 86, 214, 0.1);
}

.register-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.register-button:hover {
    background: #4746c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(88, 86, 214, 0.3);
}

header {
    padding: 100px 20px 150px;
    position: relative;
    background: #6366F1;
    color: white;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    width: 100%;
}

header h1 {
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: var(--text-shadow);
    letter-spacing: -0.5px;
    position: relative;
}

.hero-icon {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.hero-icon i {
    background: rgba(255, 255, 255, 0.2);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5em;
    animation: pulse 1.5s ease-in-out infinite;
}

.x-logo {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 50%;
    padding: 25px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.pulse-animation {
    animation: pulse 1.2s ease-in-out infinite;
}

header p {
    font-size: 1.5em;
    font-weight: 500;
    max-width: 780px;
    margin: 25px auto 50px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 18px 35px;
    font-size: 1.3em;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 55, 95, 0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 55, 95, 0.4);
    background: #ff1f4b;
}

.cta-button:active {
    transform: translateY(1px);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: -100px auto 90px;
    padding: 0 20px;
    max-width: 1250px;
    position: relative;
    z-index: 10;
}

.feature {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: right;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.feature h2 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.feature-icon {
    margin-left: 15px;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(88, 86, 214, 0.1);
    color: var(--primary-color);
}

.feature p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

#benefits {
    background: #f8f9fa;
    padding: 80px 30px;
    margin: 100px auto;
    border-radius: 20px;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
}

#benefits h2 {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

#benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000;
    background: rgba(119, 119, 119, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-item strong {
    display: block;
    font-size: 3em;
    font-weight: 800;
    margin: 15px 0;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.benefit-item strong small {
    font-size: 0.5em;
    font-weight: 600;
    display: inline-block;
    margin-right: 3px;
}

.benefit-item span {
    display: block;
    padding-top: 10px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    font-size: 1.1em;
}

#testimonials {
    padding: 70px 20px;
    margin: 90px auto;
    max-width: 1100px;
    text-align: center;
    position: relative;
}

#testimonials h2 {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

#testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    grid-auto-rows: 1fr;
}

.testimonial-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: right;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
    color: rgba(88, 86, 214, 0.1);
}

.testimonial-card p.quote {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    margin-top: 30px;
    padding-top: 10px;
}

.testimonial-card p.author {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-card p.author span {
    display: block;
    font-size: 0.9em;
    font-weight: 400;
    color: #777;
    margin-top: 5px;
}

#how-it-works {
    padding: 70px 20px;
    margin: 90px auto;
    max-width: 1200px;
    text-align: center;
    position: relative;
}

#how-it-works h2 {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

#how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 320px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.8em;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255,55,95,0.3);
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px dashed rgba(255,55,95,0.3);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
}

#signup {
    margin: 100px auto;
    padding: 70px 40px;
    background: var(--gradient-bg);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    max-width: 850px;
    position: relative;
    overflow: hidden;
    color: white;
}

#signup h2 {
    font-size: 2.6em;
    font-weight: 800;
    margin-bottom: 40px;
    display: inline-block;
    text-shadow: var(--text-shadow);
    position: relative;
}

.sparkle-icon {
    margin-left: 15px;
    font-size: 1em;
    color: #ffde59;
    animation: pulse 1.2s ease-in-out infinite;
    display: inline-block;
}

#signup form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 750px;
    margin: 0 auto;
}

#signup input[type="email"] {
    padding: 18px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2em;
    font-family: 'Tajawal', sans-serif;
    width: 380px;
    box-sizing: border-box;
    text-align: right;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#signup input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

footer {
    background: #f1f2f6;
    padding: 40px 20px;
    margin-top: 80px;
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

.highlight-text {
    display: inline-block;
    font-size: 1.1em;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 5px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.highlight-text:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .brand-title {
        flex-direction: column;
        padding: 15px 10px;
        gap: 15px;
    }

    .login-button, .register-button {
        padding: 5px 12px;
        font-size: 0.6em;
    }

    header h1 {
        font-size: 2.4em;
    }

    header p {
        font-size: 1.2em;
        padding: 0 20px;
    }

    .features {
        gap: 20px;
        margin-top: -80px;
    }

    .feature {
        width: 100%;
        max-width: 400px;
    }

    #signup {
        margin: 60px 20px;
        padding: 40px 20px;
    }

    #signup h2 {
        font-size: 2em;
    }

    #signup input[type="email"] {
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }

    .benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .benefit-item {
        padding: 25px 15px;
    }
}

@media (max-width: 1024px) {
    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 25px 15px;
    }
}

/* Saudi X/Twitter Section Styles */
#saudi-twitter {
    padding: 70px 20px;
    margin: 80px auto;
    max-width: 1200px;
    position: relative;
}

#saudi-twitter h2 {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

#saudi-twitter h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.saudi-twitter-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.saudi-twitter-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.8em;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.2em;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1em;
    color: #777;
    line-height: 1.5;
}

.saudi-twitter-info {
    flex: 1;
    min-width: 300px;
}

.saudi-twitter-info p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: right;
}

.saudi-twitter-info h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0 20px;
    text-align: right;
}

.saudi-twitter-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.saudi-twitter-info li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    text-align: right;
}

.saudi-twitter-info li:before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.saudi-twitter-info li strong {
    color: #333;
    font-weight: 700;
}

/* Demo Section Styles */
#demo {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(88, 86, 214, 0.1);
}

#demo h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
}

#demo h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-bg);
    margin: 15px auto;
    border-radius: 2px;
}

.demo-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
    font-weight: 500;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.demo-settings {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.1);
    border: 1px solid rgba(88, 86, 214, 0.1);
}

.demo-settings h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 700;
}

.demo-settings h3 i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.setting-value {
    color: var(--primary-color);
    font-weight: 500;
    background: rgba(88, 86, 214, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.demo-arrow i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.demo-arrow span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1em;
    writing-mode: horizontal-tb;
    text-align: center;
    background: rgba(88, 86, 214, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-10px); }
    60% { transform: translateX(-5px); }
}

.demo-tweets {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.1);
    border: 1px solid rgba(88, 86, 214, 0.1);
}

.demo-tweets h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 700;
}

.demo-tweets h3 i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.tweet-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tweet-card {
    background: #f8f9ff;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.15);
}

.tweet-card:hover {
    /* Hover does nothing - keeping same appearance */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.15);
    border-color: var(--primary-color);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.tweet-header i {
    color: #1da1f2;
    font-size: 1.2em;
}

.tweet-header span {
    font-weight: 600;
    color: #333;
}

.tweet-header small {
    color: #666;
    margin-right: auto;
}

.tweet-content {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: right;
    font-weight: 400;
}

.tweet-stats {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 0.9em;
}

.tweet-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.tweet-stats span:hover {
    color: var(--primary-color);
}

.demo-results {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(88, 86, 214, 0.1);
    border: 1px solid rgba(88, 86, 214, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.demo-results h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 30px;
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-item {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 86, 214, 0.2);
}

.result-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.result-number {
    display: block;
    font-size: 2.2em;
    font-weight: 800;
    color: #00b752;
    margin-bottom: 8px;
}

.result-label {
    color: #666;
    font-weight: 500;
    font-size: 1.1em;
}

/* Responsive Design for Demo Section */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .demo-arrow {
        order: 2;
        flex-direction: row;
        padding: 20px 0;
    }

    .demo-arrow i {
        transform: rotate(90deg);
        margin-bottom: 0;
        margin-left: 10px;
    }

    .demo-settings {
        order: 1;
    }

    .demo-tweets {
        order: 3;
    }
}

@media (max-width: 768px) {
    #demo {
        padding: 60px 0;
        margin: 40px 0;
    }

    #demo h2 {
        font-size: 2.2em;
    }

    .demo-subtitle {
        font-size: 1.1em;
    }

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

    .demo-container {
        gap: 25px;
    }

    .demo-settings, .demo-tweets {
        padding: 25px;
    }

    .tweet-card {
        padding: 15px;
    }

    .demo-results {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .demo-settings, .demo-tweets, .demo-results {
        padding: 20px 15px;
    }

    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tweet-stats {
        gap: 15px;
        font-size: 0.8em;
    }
}

@media (max-width: 768px) {
    .saudi-twitter-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
