/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

h3 {
    font-size: 1.8rem;
    color: #ffae00;
}

p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 174, 0, 0.3);
}

/* Links */
a {
    color: #00ffaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffae00;
    text-shadow: 0 0 10px rgba(255, 174, 0, 0.5);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffaa, #ffae00);
    color: #0d0d1a;
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.6);
    transform: translateY(-2px);
    color: #0d0d1a;
}

.btn-secondary {
    background: rgba(255, 174, 0, 0.2);
    color: #ffae00;
    border: 2px solid #ffae00;
    box-shadow: 0 0 15px rgba(255, 174, 0, 0.2);
}

.btn-secondary:hover {
    background: #ffae00;
    color: #0d0d1a;
    box-shadow: 0 0 25px rgba(255, 174, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: #00ffaa;
    border: 2px solid #00ffaa;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.2);
}

.btn-outline:hover {
    background: rgba(0, 255, 170, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.5);
    color: #00ffaa;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 170, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffaa;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

.logo-icon {
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.5));
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #00ffaa;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffaa, #ffae00);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffaa;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 170, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    z-index: 1;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 170, 0.5));
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Cards */
.service-card, .benefit-item, .faq-item {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 170, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover, .benefit-item:hover {
    border-color: #00ffaa;
    box-shadow: 0 15px 40px rgba(0, 255, 170, 0.2);
    transform: translateY(-5px);
}

.service-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.5));
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 174, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffae00;
    text-shadow: 0 0 20px rgba(255, 174, 0, 0.5);
    display: block;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Offers */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 170, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 170, 0.3);
}

.offer-card.featured {
    border-color: #ffae00;
    box-shadow: 0 0 30px rgba(255, 174, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffae00, #00ffaa);
    color: #0d0d1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-price {
    margin: 1rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.new-price {
    color: #00ffaa;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

.offer-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.offer-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-features li:before {
    content: '✓';
    color: #00ffaa;
    font-weight: bold;
    margin-right: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 174, 0, 0.3);
    position: relative;
}

.testimonial-stars {
    color: #ffae00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 174, 0, 0.5);
}

.testimonial-author {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #00ffaa;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1), rgba(255, 174, 0, 0.1));
    border-top: 1px solid rgba(0, 255, 170, 0.3);
    border-bottom: 1px solid rgba(255, 174, 0, 0.3);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input, .form-group textarea {
    padding: 12px 20px;
    border: 2px solid rgba(0, 255, 170, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #00ffaa;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #999;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: rgba(13, 13, 26, 0.95);
    border-top: 1px solid rgba(0, 255, 170, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffaa;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 170, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 255, 170, 0.3);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-section h3 {
    color: #ffae00;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.98);
    border-top: 2px solid #00ffaa;
    padding: 1rem;
    z-index: 1001;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

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

.cookie-text h3 {
    color: #00ffaa;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: rgba(13, 13, 26, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ffaa;
    max-width: 500px;
    width: 90%;
}

.cookie-category {
    margin: 1rem 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Blog Styles */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-content {
    text-align: center;
    z-index: 1;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 170, 0.5));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 170, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 170, 0.2);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #999;
}

.blog-category {
    color: #ffae00;
    background: rgba(255, 174, 0, 0.2);
    padding: 2px 10px;
    border-radius: 10px;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: #ffffff;
}

.blog-content h2 a:hover {
    color: #00ffaa;
}

.read-more {
    color: #00ffaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Page */
.article-page {
    margin-top: 80px;
    padding: 2rem 0;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    color: #999;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #00ffaa;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-date, .article-author {
    color: #999;
}

.article-category {
    color: #ffae00;
    background: rgba(255, 174, 0, 0.2);
    padding: 2px 10px;
    border-radius: 10px;
}

.featured-image {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    border-radius: 15px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    margin: 3rem 0 1.5rem;
    color: #00ffaa;
}

.article-content h3 {
    margin: 2rem 0 1rem;
    color: #ffae00;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.content-with-icon {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.content-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.highlight-box {
    background: rgba(0, 255, 170, 0.1);
    border: 1px solid rgba(0, 255, 170, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

.stat-mini {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255, 174, 0, 0.3);
}

.stat-mini .stat-number {
    font-size: 2rem;
    color: #ffae00;
    font-weight: 700;
    display: block;
}

.stat-mini .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.ranking-list {
    margin: 2rem 0;
}

.ranking-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.rank-number {
    background: linear-gradient(135deg, #00ffaa, #ffae00);
    color: #0d0d1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rank-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-tags {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 174, 0, 0.3);
}

.tag {
    display: inline-block;
    background: rgba(0, 255, 170, 0.2);
    color: #00ffaa;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
}

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

.prev-article, .next-article {
    color: #00ffaa;
    font-weight: 600;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.thank-you-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin: 2rem 0;
}

.success-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 170, 0.5));
}

.thank-you-details {
    margin: 3rem 0;
}

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

.step-item {
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-info-box {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 174, 0, 0.3);
    margin: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail .contact-icon {
    width: 24px;
    height: 24px;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(13, 13, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons, .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .grid-2, .contact-grid, .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid, .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .content-with-icon, .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .ranking-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ffaa, #ffae00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffae00, #00ffaa);
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 170, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 170, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 170, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}