/* BoAnalyst Premium Website Styles */
:root {
    --boanalyst-gold: #D4AF37;
    --boanalyst-gold-light: #F7DC6F;
    --boanalyst-gold-dark: #B8860B;
    --boanalyst-gold-glow: rgba(212, 175, 55, 0.4);
    --boanalyst-black: #000000;
    --boanalyst-dark: #0a0a0a;
    --boanalyst-darker: #050505;
    --boanalyst-text: #ffffff;
    --boanalyst-text-muted: #cccccc;
    --boanalyst-text-light: #f8f9fa;
    --boanalyst-border: #333333;
    --boanalyst-success: #28a745;
    --boanalyst-error: #dc3545;
    --boanalyst-warning: #ffc107;
    
    /* Premium Shadow System */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 12px 40px rgba(212, 175, 55, 0.4);
    
    /* Premium Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Inter', monospace;
}

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

body {
    font-family: var(--font-body);
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--boanalyst-darker) 0%, #0f0f0f 15%, #1a1a1a 30%, rgba(212, 175, 55, 0.08) 50%, #1a1a1a 70%, #0f0f0f 85%, var(--boanalyst-darker) 100%);
    color: var(--boanalyst-text-light);
    line-height: 1.7;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.3px;
    scroll-behavior: smooth;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--boanalyst-text-light);
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--boanalyst-text-light) 0%, var(--boanalyst-gold) 50%, var(--boanalyst-text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--boanalyst-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--boanalyst-gold);
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--boanalyst-text-light);
}

h5 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--boanalyst-text-light);
}

h6 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--boanalyst-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Animations & Effects */
@keyframes premiumFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes premiumGlow {
    0%, 100% { 
        box-shadow: 
            var(--shadow-xl),
            0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 
            var(--shadow-2xl),
            0 0 40px rgba(212, 175, 55, 0.4);
    }
}

@keyframes premiumShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes premiumPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes premiumSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium Utility Classes */
.premium-glow {
    animation: premiumGlow 3s ease-in-out infinite;
}

.premium-float {
    animation: premiumFloat 6s ease-in-out infinite;
}

.premium-shimmer {
    position: relative;
    overflow: hidden;
}

.premium-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    background-size: 200% 100%;
    animation: premiumShimmer 2s infinite;
    pointer-events: none;
}

/* Premium Navigation */
.navbar {
    background: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.08) 50%, rgba(0, 0, 0, 0.95) 100%),
        rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--boanalyst-gold), transparent) 1;
    padding: 0.8rem 0;
    box-shadow: 
        var(--shadow-xl),
        0 1px 0 rgba(212, 175, 55, 0.2) inset,
        var(--shadow-gold);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 10px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    height: 36px;
    transition: all 0.3s ease;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    max-width: 150px;
    overflow: hidden;
    box-sizing: border-box;
    margin-right: 10px;
}

.nav-brand:hover {
    opacity: 0.9;
}

.logo-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.9);
    padding: 1px;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    padding: 1px;
}

.logo:hover {
    transform: skew(12deg) scale(1.05);
}
.brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--boanalyst-gold);
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    padding: 2px 0;
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0 10px;
    align-items: center;
    margin-right: auto;
    flex-grow: 1;
    padding: 0;
    justify-content: space-between;
}

.nav-menu li {
    margin: 0;
}

.nav-link, .dropdown-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.2s ease;
    padding: 0.5rem 0.8rem;
    display: inline-block;
    text-transform: capitalize;
    cursor: pointer;
    line-height: 1.5;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active,
.dropdown-link:hover,
.dropdown-link.active {
    color: var(--boanalyst-gold);
    background: rgba(212, 175, 55, 0.1);
    text-decoration: none;
}

.nav-link::after,
.dropdown-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 2px;
    background: var(--boanalyst-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-link:hover::after,
.dropdown-link.active::after {
    transform: scaleX(1);
    background: var(--boanalyst-gold);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid var(--boanalyst-gold);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    border-left-color: var(--boanalyst-gold);
    color: var(--boanalyst-gold);
    transform: translateX(5px);
}

/* Premium Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 12px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: 
        linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: var(--boanalyst-black);
    box-shadow: 
        var(--shadow-gold),
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 -2px 0 rgba(0, 0, 0, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: 
        linear-gradient(135deg, var(--boanalyst-gold-light) 0%, var(--boanalyst-gold) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-gold-lg),
        0 3px 0 rgba(255, 255, 255, 0.15) inset,
        0 -3px 0 rgba(0, 0, 0, 0.1) inset;
}

.btn-secondary {
    background: 
        rgba(212, 175, 55, 0.05),
        linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--boanalyst-gold);
    border: 2px solid var(--boanalyst-gold);
    box-shadow: 
        var(--shadow-md),
        0 1px 0 rgba(212, 175, 55, 0.2) inset;
}

.btn-secondary:hover {
    background: 
        linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    color: var(--boanalyst-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-gold),
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 -2px 0 rgba(0, 0, 0, 0.1) inset;
    border-color: var(--boanalyst-gold-light);
}

/* Premium Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 175, 55, 0.1) 20%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 80%,
        transparent 100%
    );
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.3;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--boanalyst-darker);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--boanalyst-gold-dark), var(--boanalyst-gold));
    border-radius: 6px;
    border: 2px solid var(--boanalyst-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--boanalyst-gold), var(--boanalyst-gold-light));
    box-shadow: 0 0 10px var(--boanalyst-gold-glow);
}

/* Premium Selection */
::selection {
    background: var(--boanalyst-gold-glow);
    color: var(--boanalyst-black);
    text-shadow: none;
}

::-moz-selection {
    background: var(--boanalyst-gold-glow);
    color: var(--boanalyst-black);
    text-shadow: none;
}

/* Premium Focus States */
*:focus {
    outline: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--boanalyst-gold);
    outline-offset: 2px;
    box-shadow: 
        0 0 0 4px var(--boanalyst-gold-glow),
        var(--shadow-md);
}

.nav-link:focus {
    outline: 2px solid var(--boanalyst-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Premium Input Styling */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--boanalyst-text-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: var(--boanalyst-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 3px var(--boanalyst-gold-glow),
        var(--shadow-md);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.page-section {
    min-height: 100vh;
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.2) 0%, #000000 40%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, #000000 40%),
                linear-gradient(45deg, #000000 0%, rgba(212, 175, 55, 0.1) 50%, #000000 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin: 2rem;
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.1);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, 
        var(--boanalyst-text-light) 0%, 
        var(--boanalyst-gold) 25%, 
        #FFD700 50%, 
        var(--boanalyst-gold) 75%, 
        var(--boanalyst-text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(212, 175, 55, 0.2);
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--boanalyst-text-muted);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--boanalyst-gold);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: 
        linear-gradient(145deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(255, 215, 0, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.2) inset;
    backdrop-filter: blur(20px) saturate(120%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(5deg);
    box-shadow: 
        var(--shadow-gold-lg),
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 4px 0 rgba(212, 175, 55, 0.2) inset;
    border-color: rgba(212, 175, 55, 0.8);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--boanalyst-gold-light) 0%, var(--boanalyst-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.feature-card p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, #000000 0%, rgba(212, 175, 55, 0.05) 30%, #000000 60%, rgba(212, 175, 55, 0.05) 90%, #000000 100%);
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--boanalyst-gold);
}

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

.testimonial-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--boanalyst-gold);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--boanalyst-gold);
    font-weight: 600;
}

/* Subscription Management Dashboard Styles */
.subscription-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.status-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.status-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-name {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
}

.plan-status {
    font-size: 0.9em;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.plan-status.active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.plan-status.expired {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.plan-status.free {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.subscription-info p {
    margin: 8px 0;
    color: #555;
}

.subscription-info strong {
    color: #333;
}

.subscription-actions {
    margin: 30px 0;
}

.action-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.action-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.plan-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.plan-card.current {
    border-color: #28a745;
    background: #f8fff9;
}

.plan-card h4 {
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.plan-price {
    font-size: 1.5em;
    color: #FFD700;
    font-weight: bold;
    margin: 10px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.plan-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9em;
}

.plan-features li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

.manage-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.payment-history {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.payment-history h3 {
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 8px;
}

.history-list {
    max-height: 300px;
    overflow-y: auto;
}

.history-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-item:last-child {
    margin-bottom: 0;
}

.payment-info {
    flex: 1;
}

.payment-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.payment-amount {
    font-weight: bold;
    color: #333;
}

.payment-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
}

.payment-status.success {
    background: #d4edda;
    color: #155724;
}

.payment-status.failed {
    background: #f8d7da;
    color: #721c24;
}

.payment-status.pending {
    background: #fff3cd;
    color: #856404;
}

/* Responsive Design for Subscription Dashboard */
@media (max-width: 768px) {
    .subscription-status {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .manage-buttons {
        flex-direction: column;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Forum Styles */
.forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--boanalyst-gold);
}

.forum-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--boanalyst-text-muted);
    border: 1px solid var(--boanalyst-border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--boanalyst-gold);
    color: var(--boanalyst-black);
    border-color: var(--boanalyst-gold);
}

.forum-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.forum-post {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--boanalyst-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.forum-post:hover {
    border-color: var(--boanalyst-gold);
    transform: translateY(-2px);
}

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

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--boanalyst-gold);
}

.post-author h4 {
    color: var(--boanalyst-gold);
    margin: 0;
}

.post-date {
    color: var(--boanalyst-text-muted);
    font-size: 0.9rem;
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-category.discussion { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.post-category.review { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }
.post-category.prediction { background: rgba(241, 196, 15, 0.2); color: #f1c40f; }
.post-category.news { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }

.post-title {
    color: var(--boanalyst-text);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.post-content {
    color: var(--boanalyst-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.like-btn,
.comment-btn {
    background: transparent;
    border: none;
    color: var(--boanalyst-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.like-btn:hover,
.comment-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--boanalyst-gold);
}

.premium-badge {
    background: linear-gradient(45deg, var(--boanalyst-gold), var(--boanalyst-gold-light));
    color: var(--boanalyst-black);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Subscription Plans */
.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subscription-header h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.subscription-plan {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(255, 215, 0, 0.05) 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.1) inset;
}

.subscription-plan:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--boanalyst-gold);
    box-shadow: 
        var(--shadow-gold-lg),
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 2px 0 rgba(212, 175, 55, 0.2) inset;
}

.subscription-plan.featured {
    border-color: var(--boanalyst-gold);
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(212, 175, 55, 0.1) 100%),
        radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    transform: scale(1.05);
    box-shadow: 
        var(--shadow-gold),
        0 0 0 1px rgba(212, 175, 55, 0.3) inset,
        0 2px 0 rgba(212, 175, 55, 0.2) inset;
    animation: premiumGlow 4s ease-in-out infinite;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    color: var(--boanalyst-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.subscription-plan.current {
    border-color: var(--boanalyst-success);
    background: 
        linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(40, 167, 69, 0.05) 100%),
        radial-gradient(circle at center, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
}

.subscribe-btn.current-plan {
    background: var(--boanalyst-success);
    cursor: not-allowed;
    opacity: 0.7;
}

.subscribe-btn.current-plan:hover {
    background: var(--boanalyst-success);
    transform: none;
    box-shadow: var(--shadow-md);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.update-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1000;
}

/* Inside Talk Section */
.inside-talk-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.inside-talk-header {
    text-align: center;
    margin-bottom: 3rem;
}

.inside-talk-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--boanalyst-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.inside-talk-header p {
    font-size: 1.2rem;
    color: var(--boanalyst-text-muted);
}

.twitter-feed-container {
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.twitter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
}

.twitter-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.twitter-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--boanalyst-gold);
}

.twitter-info h3 {
    color: var(--boanalyst-gold);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.twitter-info p {
    color: var(--boanalyst-text-muted);
    margin: 0;
}

.follow-btn {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.twitter-posts {
    min-height: 400px;
}

.loading-tweets {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--boanalyst-text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--boanalyst-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.tweet-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--boanalyst-gold);
    transition: all 0.3s ease;
}

.tweet-post:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--boanalyst-text-muted);
    font-size: 0.9rem;
}

.tweet-content {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tweet-stats {
    display: flex;
    gap: 2rem;
    color: var(--boanalyst-text-muted);
    font-size: 0.9rem;
}

.twitter-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 2rem;
}

.twitter-footer a {
    color: var(--boanalyst-gold);
    text-decoration: none;
}

.twitter-footer a:hover {
    text-decoration: underline;
}

.subscription-plan h3 {
    color: var(--boanalyst-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(212, 175, 55, 0.4),
                 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.subscription-plan .price {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.subscription-plan .price span {
    font-size: 0.9rem;
    color: #ccc;
}

.original-price {
    text-decoration: line-through;
    color: #888 !important;
    font-size: 1.2rem !important;
    display: block;
    margin-bottom: 0.3rem;
}

.savings {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.subscription-plan .features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.subscription-plan .features li {
    padding: 0.4rem 0;
    color: #ddd;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.subscription-plan .features li:before {
    content: "";
    color: #FFD700;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Discount badge for yearly plan */
.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

/* Original price styling */
.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem !important;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Savings text */
.savings {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.subscribe-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: auto;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .subscription-section {
        padding: 2rem 1rem;
    }
    
    .subscription-header h1 {
        font-size: 2rem;
    }
    
    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .subscription-plan {
        padding: 1.2rem;
        min-height: 350px;
    }
    
    .subscription-plan.featured {
        transform: none;
        margin: 0.5rem 0;
    }
    
    .subscription-plan .price {
        font-size: 1.8rem;
    }
    
    .subscription-plan h3 {
        font-size: 1.2rem;
    }
    
    .discount-badge {
        top: -5px;
        right: -5px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .subscription-plan .features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .subscribe-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .subscription-plans {
        padding: 0 0.25rem;
    }
    
    .subscription-plan {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .subscription-plan .price {
        font-size: 1.6rem;
    }
    
    .original-price {
        font-size: 1rem !important;
    }
    
    .savings {
        font-size: 0.9rem;
    }
}

/* Analytics */
.analytics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.analytics-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--boanalyst-border);
    border-radius: 12px;
    padding: 2rem;
}

.analytics-card h3 {
    color: var(--boanalyst-gold);
    margin-bottom: 1.5rem;
}

.chart-placeholder {
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--boanalyst-text-muted);
    text-align: center;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--boanalyst-dark) 0%, var(--boanalyst-black) 100%);
    border: 2px solid var(--boanalyst-gold);
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-fullscreen .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--boanalyst-border);
}

.modal-header h2 {
    color: var(--boanalyst-gold);
    margin: 0;
}

.close {
    color: var(--boanalyst-text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--boanalyst-gold);
}

/* Forms */
.auth-form,
.post-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--boanalyst-gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--boanalyst-border);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--boanalyst-text);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--boanalyst-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
    color: var(--boanalyst-text-muted);
}

.auth-switch a {
    color: var(--boanalyst-gold);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Notifications */
.notifications-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background: var(--boanalyst-success);
}

.notification.error {
    background: var(--boanalyst-error);
}

.notification.warning {
    background: var(--boanalyst-warning);
}

.notification.info {
    background: var(--boanalyst-gold);
    color: var(--boanalyst-black);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--boanalyst-text-muted);
    border: 1px solid var(--boanalyst-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
    background: var(--boanalyst-gold);
    color: var(--boanalyst-black);
    border-color: var(--boanalyst-gold);
}

@keyframes premiumGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) brightness(1);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) brightness(1.1);
    }
}

.brand-text:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #333333 0%, var(--boanalyst-gold-light) 25%, #FFD700 50%, var(--boanalyst-gold-light) 75%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: var(--boanalyst-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3),
                 0 0 10px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
}

.subscription-plan h3 {
    color: var(--boanalyst-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(212, 175, 55, 0.4),
                 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--boanalyst-text);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.2),
                 0 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.testimonials-section h2,
.features-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--boanalyst-gold);
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.subscription-header h1 {
    font-size: 3rem;
    color: var(--boanalyst-gold);
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 6px 12px rgba(212, 175, 55, 0.5),
                 0 3px 6px rgba(0, 0, 0, 0.8),
                 0 0 25px rgba(212, 175, 55, 0.4);
    letter-spacing: 1.5px;
}

/* Enhanced Premium Effects */
.feature-card {
    background: linear-gradient(135deg, #000000 0%, rgba(212, 175, 55, 0.2) 50%, #000000 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--boanalyst-gold);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(212, 175, 55, 0.3),
                0 0 20px rgba(0, 0, 0, 0.8);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3),
                0 0 50px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.subscription-plan {
    background: linear-gradient(135deg, #000000 0%, rgba(212, 175, 55, 0.25) 50%, #000000 100%);
    border: 4px solid var(--boanalyst-gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3),
                inset 0 2px 0 rgba(212, 175, 55, 0.4),
                0 0 30px rgba(0, 0, 0, 0.9);
}

.subscription-plan:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4),
                0 0 60px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

/* Lock Screen Styles */
.lock-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.lock-content {
    background: linear-gradient(135deg, var(--boanalyst-dark) 0%, var(--boanalyst-black) 100%);
    border: 2px solid var(--boanalyst-gold);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.lock-content h2 {
    color: var(--boanalyst-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.lock-content p {
    color: var(--boanalyst-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lock-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lock-actions button {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-menu li {
        display: inline-block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-tabs,
    .social-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .analytics-tab-btn,
    .social-tab-btn {
        flex: 1;
        min-width: 120px;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-card,
    .subscription-plan {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* AI Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, #B8860B, #D4AF37);
    border-radius: 50%;
    z-index: -1;
    animation: premiumGlow 3s ease-in-out infinite alternate;
}

.chatbot-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.5);
    color: #FFD700;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    display: none;
    flex-direction: column;
    border: 2px solid #D4AF37;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chatbot-container.active {
    display: flex;
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chatbot-header {
    background: linear-gradient(135deg, #000000, #2d2d2d);
    color: #D4AF37;
    padding: 20px 25px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chatbot-close {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: #D4AF37;
    color: #000;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.chatbot-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 3px;
}

.chatbot-message {
    max-width: 85%;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeIn 0.4s ease;
    position: relative;
    font-weight: 500;
}

.chatbot-message.user {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    align-self: flex-end;
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.chatbot-message.user::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #FFD700, #D4AF37, #B8860B);
    border-radius: 20px;
    z-index: -1;
}

.chatbot-message.bot {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8));
    color: #D4AF37;
    align-self: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8));
    border-radius: 20px;
    align-self: flex-start;
    max-width: 90px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.typing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    animation: typing 1.6s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.typing-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.chatbot-input-container {
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(45, 45, 45, 0.9));
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    gap: 12px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8));
    color: #D4AF37;
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.chatbot-input::placeholder {
    color: rgba(212, 175, 55, 0.6);
    font-style: italic;
}

.chatbot-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    color: #FFD700;
}

.chatbot-send {
    padding: 12px 20px;
    background: linear-gradient(135deg, #000000, #2d2d2d);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chatbot-send:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.chatbot-send:active {
    transform: translateY(0);
}

@keyframes premiumGlow {
    0% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
    }
}

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-12px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .chatbot-container {
        width: 340px;
        height: 480px;
        bottom: 70px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .chatbot-messages {
        padding: 20px;
        gap: 15px;
    }
    
    .chatbot-input-container {
        padding: 15px 20px;
    }
}

/* Movie Explorer Styles */
.movies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.movies-header h1 {
    font-size: 3rem;
    color: var(--boanalyst-gold);
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
    letter-spacing: 1.5px;
}

.movies-search {
    margin-bottom: 2rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--boanalyst-gold);
    font-size: 16px;
}

.search-container input:focus {
    outline: none;
    border-color: var(--boanalyst-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.movies-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--boanalyst-gold);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--boanalyst-gold), #B8860B);
    color: #000;
    border-color: var(--boanalyst-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.movie-card {
    background: linear-gradient(135deg, #000000 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-10px);
    border-color: var(--boanalyst-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.movie-poster {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.05);
}

.no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    font-size: 4rem;
    color: var(--boanalyst-gold);
}

.movie-info {
    padding: 1.5rem;
}

.movie-title {
    color: var(--boanalyst-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.movie-year {
    color: rgba(212, 175, 55, 0.8);
}

.movie-rating {
    color: var(--boanalyst-gold);
    font-weight: 600;
}

.movie-overview {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.genres-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.genre-btn {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--boanalyst-gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.genre-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.loading-placeholder,
.search-placeholder,
.no-results,
.error-message {
    text-align: center;
    padding: 3rem;
    color: rgba(212, 175, 55, 0.7);
    font-size: 1.1rem;
}

.error-message {
    color: #ff6b6b;
}

/* Box Office Analytics Styles */
.analytics-header {
    text-align: center;
    margin-bottom: 40px;
}

.analytics-header h1 {
    color: #D4AF37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.analytics-header p {
    color: #ccc;
    font-size: 18px;
}

.analytics-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.analytics-tab-btn {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analytics-tab-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.analytics-tab-btn.active {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.analytics-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.analytics-tab-content.active {
    display: block;
}

.box-office-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.box-office-controls select {
    padding: 10px 15px;
    background: rgba(45, 45, 45, 0.8);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.box-office-controls select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #555, #333);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    transform: translateY(-2px);
}

.box-office-table-data {
    width: 100%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.box-office-table-data th {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.box-office-table-data td {
    padding: 15px 10px;
    color: #fff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.box-office-row:hover {
    background: rgba(212, 175, 55, 0.1);
}

.rank {
    font-weight: 600;
    color: #D4AF37;
    font-size: 18px;
}

.movie-title-cell {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating {
    font-size: 12px;
    color: #FFD700;
}

.gross {
    font-weight: 600;
    color: #4CAF50;
}

.change.positive {
    color: #4CAF50;
}

.change.negative {
    color: #f44336;
}

.trends-overview {
    margin-bottom: 40px;
}

.trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trend-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.trend-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.trend-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trend-value {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.trend-change {
    font-size: 14px;
    font-weight: 600;
}

.trend-change.positive {
    color: #4CAF50;
}

.trend-change.negative {
    color: #f44336;
}

.genre-performance {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.genre-performance h2 {
    color: #D4AF37;
    margin-bottom: 25px;
    text-align: center;
}

.genre-performance-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 10px;
}

.genre-info h4 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.genre-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.avg-gross {
    color: #4CAF50;
}

.market-share {
    color: #2196F3;
}

.genre-growth.positive {
    color: #4CAF50;
}

.genre-growth.negative {
    color: #f44336;
}

.genre-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.genre-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.performance-search {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.performance-search input {
    flex: 1;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    background: rgba(45, 45, 45, 0.8);
    color: #fff;
    font-size: 16px;
}

.performance-search input::placeholder {
    color: #aaa;
}

.search-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    font-style: italic;
    font-size: 18px;
}

.performance-overview h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.performance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.perf-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.perf-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perf-value {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.perf-value.positive {
    color: #4CAF50;
}

.perf-value.negative {
    color: #f44336;
}

.perf-label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
}

.performance-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.breakdown-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.breakdown-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

.breakdown-stats {
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: #aaa;
}

.stat-value {
    color: #fff;
    font-weight: 600;
}

.top-markets h4 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 16px;
}

.market-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-country {
    color: #ccc;
}

.market-gross {
    color: #4CAF50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .movie-tabs, .analytics-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .movie-search-bar, .performance-search {
        flex-direction: column;
        align-items: center;
    }
    
    .movie-search-bar input, .performance-search input {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .box-office-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .box-office-table-data {
        font-size: 12px;
    }
    
    .box-office-table-data th,
    .box-office-table-data td {
        padding: 8px 5px;
    }
    
    .trend-cards {
        grid-template-columns: 1fr;
    }
    
    .performance-summary {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .performance-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Social Media Analytics Styles */
.social-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-header h1 {
    color: #D4AF37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-header p {
    color: #ccc;
    font-size: 18px;
}

.social-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.social-tab-btn {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-tab-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-tab-btn.active {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.social-tab-content.active {
    display: block;
}

.sentiment-search, .influencer-search {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.sentiment-search input, .influencer-search input {
    flex: 1;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    background: rgba(45, 45, 45, 0.8);
    color: #fff;
    font-size: 16px;
}

.sentiment-search input::placeholder, .influencer-search input::placeholder {
    color: #aaa;
}

.sentiment-overview h2, .influencer-overview h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.sentiment-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sentiment-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sentiment-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sentiment-percentage {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.sentiment-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.sentiment-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.sentiment-fill.positive {
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.sentiment-fill.negative {
    background: linear-gradient(90deg, #f44336, #d32f2f);
}

.sentiment-fill.neutral {
    background: linear-gradient(90deg, #2196F3, #1976D2);
}

.sentiment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sentiment-stats {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sentiment-keywords {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sentiment-keywords h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.keyword-tag {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.keyword-tag.small {
    padding: 4px 8px;
    font-size: 10px;
}

.sentiment-positive {
    color: #4CAF50 !important;
}

.sentiment-negative {
    color: #f44336 !important;
}

.sentiment-mixed, .sentiment-neutral {
    color: #2196F3 !important;
}

.trending-topics-container, .mentions-container {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trending-topics-container h2, .mentions-container h2 {
    color: #D4AF37;
    margin-bottom: 25px;
    text-align: center;
}

.mentions-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.mentions-controls select {
    padding: 10px 15px;
    background: rgba(45, 45, 45, 0.8);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.trending-item, .mention-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.trending-item:hover, .mention-item:hover {
    border-color: #D4AF37;
    background: rgba(45, 45, 45, 0.8);
}

.trending-topic, .mention-details {
    flex: 1;
}

.trending-topic h3, .mention-details h3 {
    color: #D4AF37;
    margin-bottom: 8px;
    font-size: 18px;
}

.trending-stats, .mention-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.tweet-count, .mention-count {
    color: #2196F3;
    font-weight: 600;
}

.trending-sentiment, .mention-sentiment {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.mention-rank {
    font-size: 24px;
    font-weight: 600;
    color: #D4AF37;
    margin-right: 20px;
    min-width: 40px;
}

.mention-score {
    color: #FFD700;
    font-weight: 600;
}

.mention-keywords {
    margin-top: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.trending-indicator {
    margin-left: 20px;
}

.trending-arrow {
    font-size: 24px;
}

.influencer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.influencer-opinion {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.influencer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.influencer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.influencer-username {
    color: #D4AF37;
    font-weight: 600;
    font-size: 16px;
}

.verified-badge {
    color: #1DA1F2;
    font-size: 16px;
}

.opinion-sentiment {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(45, 45, 45, 0.8);
}

.opinion-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.opinion-engagement {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.likes, .retweets {
    color: #aaa;
}

@media (max-width: 768px) {
    .social-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .sentiment-search, .influencer-search {
        flex-direction: column;
        align-items: center;
    }
    
    .sentiment-search input, .influencer-search input {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .sentiment-summary {
        grid-template-columns: 1fr;
    }
    
    .sentiment-details {
        grid-template-columns: 1fr;
    }
    
    .mentions-controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .trending-item, .mention-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mention-rank {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .influencer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Premium AI Assistant Styles */
.ai-assistant-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.ai-assistant-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid var(--boanalyst-gold);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.ai-assistant-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--boanalyst-gold-light);
}

.ai-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--boanalyst-gold);
    border-radius: 50%;
    animation: aiPulse 2s infinite;
}

.ai-emoji {
    font-size: 24px;
    z-index: 1;
}

@keyframes aiPulse {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 1; }
}

.ai-status {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-text {
    color: var(--boanalyst-gold);
    font-weight: 600;
    font-size: 14px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--boanalyst-text-muted);
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.ai-assistant-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 600px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid var(--boanalyst-gold);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: aiSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes aiSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-assistant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.ai-avatar-inner {
    font-size: 20px;
}

.ai-header-text h3 {
    color: var(--boanalyst-gold);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.ai-subtitle {
    color: var(--boanalyst-text-muted);
    font-size: 12px;
    font-weight: 500;
}

.ai-header-controls {
    display: flex;
    gap: 8px;
}

.ai-control-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--boanalyst-text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ai-control-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--boanalyst-gold);
}

.ai-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.ai-messages::-webkit-scrollbar-thumb {
    background: var(--boanalyst-gold);
    border-radius: 3px;
}

.ai-message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.3s ease;
}

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

.message-avatar {
    flex-shrink: 0;
}

.bot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 16px;
    color: var(--boanalyst-text);
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-message .message-text {
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    color: var(--boanalyst-black);
    margin-left: auto;
    max-width: 80%;
}

.message-time {
    font-size: 11px;
    color: var(--boanalyst-text-muted);
    margin-left: 16px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--boanalyst-gold);
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.welcome-message h4 {
    color: var(--boanalyst-gold);
    margin: 0 0 12px 0;
    font-size: 16px;
}

.welcome-message p {
    margin: 0 0 12px 0;
    color: var(--boanalyst-text);
}

.ai-capabilities {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.ai-capabilities li {
    padding: 8px 0;
    color: var(--boanalyst-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-capabilities li:last-child {
    border-bottom: none;
}

.ai-prompt {
    color: var(--boanalyst-gold) !important;
    font-weight: 600;
    margin-top: 16px !important;
}

.ai-input-section {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.ai-suggestions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.suggestion-chip {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--boanalyst-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.suggestion-chip:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--boanalyst-gold);
    transform: translateY(-1px);
}

.ai-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    border-color: var(--boanalyst-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#ai-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--boanalyst-text);
    font-size: 14px;
    line-height: 1.4;
    resize: none;
    outline: none;
    min-height: 20px;
    max-height: 100px;
    font-family: 'Inter', sans-serif;
}

#ai-input::placeholder {
    color: var(--boanalyst-text-muted);
}

.ai-send-btn {
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--boanalyst-black);
}

.ai-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.ai-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
    color: var(--boanalyst-text-muted);
}

.input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--boanalyst-text-muted);
}

.ai-powered {
    display: flex;
    align-items: center;
    gap: 4px;
}

.char-count {
    font-weight: 500;
}

/* AI Assistant Mobile Responsive */
@media (max-width: 768px) {
    .ai-assistant-container {
        width: calc(100vw - 40px);
        height: 500px;
        right: 20px;
    }
    
    .ai-assistant-toggle {
        padding: 10px 16px;
    }
    
    .status-text {
        display: none;
    }
}

/* Enhanced Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3a 50%, #1e1e2e 100%);
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
    animation: slideIn 0.4s ease-out;
    overflow: hidden;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #2a2a3a 0%, #3a3a4a 100%);
    color: var(--boanalyst-gold-light);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.close {
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--boanalyst-gold-light);
    transform: scale(1.1);
}

.modal-body {
    padding: 25px;
    color: #ffffff;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--boanalyst-gold) transparent;
    background: rgba(0, 0, 0, 0.2);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--boanalyst-gold);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--boanalyst-gold-light);
}

/* Premium Form Styling */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-group input {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--boanalyst-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

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

/* Password Input Container */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    flex: 1;
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--boanalyst-gold);
    transform: scale(1.1);
}

/* Password Validation Styling */
.password-validation {
    margin-top: 10px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.validation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.validation-item:last-child {
    margin-bottom: 0;
}

.validation-item.valid {
    color: #4ade80;
    transform: scale(1.02);
}

.validation-item.invalid {
    color: #f87171;
}

.validation-item.valid .validation-icon {
    animation: checkmarkBounce 0.3s ease-out;
}

@keyframes checkmarkBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.validation-icon {
    font-size: 16px;
    min-width: 20px;
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.auth-switch a {
    color: var(--boanalyst-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-switch a:hover {
    color: var(--boanalyst-gold-light);
    text-decoration: underline;
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--boanalyst-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--boanalyst-gold);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--boanalyst-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Legal Modal Styling */
.legal-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3a 100%);
}

.legal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.legal-body {
    flex: 1;
    overflow-y: auto;
    max-height: 70vh;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.legal-text {
    line-height: 1.7;
    color: #ffffff;
    font-size: 14px;
}

.legal-text h3 {
    color: #ffffff;
    margin: 25px 0 15px;
    font-size: 18px;
    font-weight: 700;
    border-left: 4px solid var(--boanalyst-gold);
    padding-left: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.6;
}

.legal-text strong {
    color: #ffffff;
    font-weight: 700;
}

.legal-text p {
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Button Styling for Modals */
.auth-form .btn-primary, .auth-form .btn-secondary {
    padding: 14px 28px;
    border: 2px solid var(--boanalyst-gold);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
}

/* Compact Button Styling for Search */
.search-input-group .btn-primary,
.boxoffice-search .btn-primary,
.ticketing-search .btn-primary {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    white-space: nowrap;
}

.search-input-group .btn-primary:hover,
.boxoffice-search .btn-primary:hover,
.ticketing-search .btn-primary:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.auth-form .btn-primary {
    background: linear-gradient(135deg, var(--boanalyst-gold) 0%, var(--boanalyst-gold-dark) 100%);
    color: var(--boanalyst-black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.auth-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--boanalyst-gold-light) 0%, var(--boanalyst-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.auth-form .btn-secondary {
    background: transparent;
    color: var(--boanalyst-gold);
    border: 2px solid var(--boanalyst-gold);
}

.auth-form .btn-secondary:hover {
    background: var(--boanalyst-gold);
    color: var(--boanalyst-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Enhanced Social Media Sentiment Styling */
.sentiment-controls-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.analysis-type-row,
.movie-search-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.analysis-type-row h3,
.movie-search-row h3 {
    color: #e2e8f0;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group input {
    flex: 2;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    min-width: 280px;
}

.search-input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.analysis-type-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.analysis-card {
    padding: 2rem;
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.6) 100%);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
}

.analysis-card:hover {
    border-color: rgba(148, 163, 184, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.4);
}

.analysis-card.active {
    border-color: #64748b;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(71, 85, 105, 0.8) 100%);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.5);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sentiment-analysis {
    margin-top: 3rem;
}

.sentiment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sentiment-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(51, 65, 85, 0.5) 100%);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.sentiment-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #64748b;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.5);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.platform-header h3 {
    color: #e2e8f0;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.post-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.sentiment-score {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    text-shadow: 0 2px 10px rgba(148, 163, 184, 0.5);
}

.sentiment-breakdown {
    display: flex;
    justify-content: space-around;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.overall-sentiment {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.6) 100%);
    border: 2px solid #64748b;
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.overall-sentiment h3 {
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.overall-score {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #f1f5f9;
    text-shadow: 0 4px 20px rgba(148, 163, 184, 0.6);
}

.sentiment-summary {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Box Office Analytics Styling */
.boxoffice-header,
.ticketing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.boxoffice-header h2,
.ticketing-header h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.boxoffice-header p,
.ticketing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.boxoffice-search,
.ticketing-search {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.boxoffice-search input,
.ticketing-search input {
    flex: 2;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    min-width: 280px;
}

.boxoffice-search input:focus,
.ticketing-search input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    outline: none;
}

.boxoffice-cards,
.ticketing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.boxoffice-card,
.ticketing-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.6) 100%);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.boxoffice-card::before,
.ticketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.boxoffice-card:hover,
.ticketing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #64748b;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.5);
}

.boxoffice-card:hover::before,
.ticketing-card:hover::before {
    opacity: 1;
}

.boxoffice-card h3,
.ticketing-card h3 {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.boxoffice-data,
.ticketing-tweets,
.trends-chart,
.performance-chart {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ticketing-metrics,
.boxoffice-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.metric-value {
    color: #e2e8f0;
    font-weight: 600;
}

.boxoffice-summary,
.ticketing-summary {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.6) 100%);
    border: 2px solid #64748b;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.boxoffice-summary h3,
.ticketing-summary h3 {
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.summary-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.data-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.3);
    font-size: 14px;
}

/* Classy Forum Design */
.forum-topics-grid {
    margin: 3rem 0;
    padding: 0 1rem;
}

.forum-topics-grid h3 {
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.topic-card {
    background: 
        linear-gradient(145deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    text-decoration: none;
    color: #1a202c;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(120%);
}

.topic-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(212, 175, 55, 0.3),
        0 0 0 2px rgba(212, 175, 55, 0.3) inset;
    text-decoration: none;
    color: #0f172a;
    border-color: rgba(212, 175, 55, 0.5);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.topic-card h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.topic-card p {
    margin: 0 0 1.5rem 0;
    color: #475569;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.2px;
}

.topic-posts {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.topic-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.topic-card:hover .topic-posts::before {
    left: 100%;
}

/* Enhanced Forum Posts */
.forum-post {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: #1e293b;
    backdrop-filter: blur(15px) saturate(110%);
}

.topic-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.25),
        0 12px 25px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.4) inset;
    border-color: rgba(255, 215, 0, 0.6);
    background: 
        linear-gradient(145deg, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(255, 215, 0, 0.1) 100%);
}

.forum-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-author h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.post-date {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.post-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.post-content {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.post-actions button {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-actions button:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.like-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
}

.comment-btn:hover {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%) !important;
}

/* Dynamic Content Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.forum-post {
    animation: fadeInUp 0.6s ease forwards;
}

.forum-post:nth-child(1) { animation-delay: 0.1s; }
.forum-post:nth-child(2) { animation-delay: 0.2s; }
.forum-post:nth-child(3) { animation-delay: 0.3s; }
.forum-post:nth-child(4) { animation-delay: 0.4s; }
.forum-post:nth-child(5) { animation-delay: 0.5s; }

/* Live Update Indicator */
.update-indicator {
    animation: slideInLeft 0.5s ease;
}

/* Content Refresh Animation */
@keyframes contentRefresh {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

.content-refreshing {
    animation: contentRefresh 0.8s ease;
}

/* Forum Header Actions */
.forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.forum-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.refresh-btn {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(68, 160, 141, 0.3);
}

.refresh-btn:active {
    transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .topic-card {
        padding: 1.25rem;
    }
}

/* Centered Analyze Button Styles */
.analyze-button-center {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.analyze-button-center .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 150px;
    max-width: 200px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.analyze-button-center .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Search input styling improvements */
.boxoffice-search input,
.ticketing-search input,
.performance-search input,
.search-input-group input,
.influencer-search input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.boxoffice-search input:focus,
.ticketing-search input:focus,
.performance-search input:focus,
.search-input-group input:focus,
.influencer-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Additional styling for data display */
.wiki-stats,
.detailed-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item,
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-value {
    color: var(--boanalyst-gold-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insights-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.insights-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--boanalyst-gold);
    font-size: 0.8rem;
}

.tweets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tweet-item,
.insight-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--boanalyst-gold);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Enhanced responsive design for new features */
@media (max-width: 768px) {
    .sentiment-controls-container {
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .analysis-type-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .analysis-card {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
    
    .search-input-group,
    .boxoffice-search,
    .ticketing-search {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .search-input-group input,
    .boxoffice-search input,
    .ticketing-search input {
        min-width: auto;
        width: 100%;
    }
    
    .search-input-group .btn-primary,
    .boxoffice-search .btn-primary,
    .ticketing-search .btn-primary {
        min-width: auto;
        width: 100%;
    }
    
    .sentiment-cards,
    .boxoffice-cards,
    .ticketing-cards {
        grid-template-columns: 1fr;
    }
    
    .boxoffice-search input,
    .ticketing-search input {
        width: 100%;
        max-width: 100%;
    }
    
    .overall-sentiment {
        padding: 2.5rem;
    }
    
    .overall-score {
        font-size: 3.5rem;
    }
}

/* Movies Section Styling */
.movies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.movies-header h1 {
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.movies-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.movies-controls {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(101, 67, 33, 0.25) 50%, rgba(62, 39, 35, 0.35) 100%);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.language-filters {
    text-align: center;
}

.language-filters h3 {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-chip {
    padding: 12px 24px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(101, 67, 33, 0.5) 100%);
    color: #f4e4c1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.filter-chip:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.4);
    color: #fff;
}

.filter-chip.active {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(244, 208, 63, 0.3) 100%);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.6);
    color: #fff;
}

.movies-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.movies-tab-btn {
    padding: 12px 24px;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.6) 100%);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.movies-tab-btn:hover {
    border-color: rgba(148, 163, 184, 0.5);
    transform: translateY(-2px);
}

.movies-tab-btn.active {
    border-color: #64748b;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(71, 85, 105, 0.8) 100%);
    box-shadow: 0 6px 15px rgba(30, 41, 59, 0.4);
}

.movies-tab-content {
    display: none;
}

.movies-tab-content.active {
    display: block;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.movie-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.4) 50%, rgba(62, 39, 35, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.movie-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    border-color: #d4af37;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.3);
}

.movie-poster {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
}

.movie-info {
    padding: 1.5rem;
}

.movie-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.movie-language {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(244, 208, 63, 0.2) 100%);
    color: #f4e4c1;
    font-size: 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.movie-release-date {
    color: #c9a96e;
    font-size: 14px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.movie-genre {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.genre-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(101, 67, 33, 0.3) 100%);
    color: #f4e4c1;
    font-size: 11px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.movie-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.movie-cast {
    color: #c9a96e;
    font-size: 13px;
    line-height: 1.4;
}

.movie-cast strong {
    color: #d4af37;
    font-weight: 700;
}

/* Responsive Movies Design */
@media (max-width: 768px) {
    .movies-controls {
        padding: 2rem;
        gap: 2rem;
    }
    
    .filter-chips {
        gap: 0.5rem;
    }
    
    .filter-chip {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .movies-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .movies-tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* Premium Modal Design Complete */

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header, .modal-body {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-body {
        max-height: 60vh;
    }
}
