/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e91e8c;
    --primary-dark: #c4177a;
    --secondary: #00bfff;
    --accent: #ff6b35;
    --bg-dark: #0a0a0f;
    --bg-card: #14141f;
    --bg-card-hover: #1a1a2e;
    --text: #ffffff;
    --text-muted: #8a8a9a;
    --gradient: linear-gradient(135deg, #e91e8c, #00bfff);
    --gradient-hot: linear-gradient(135deg, #ff6b35, #e91e8c);
    --shadow: 0 4px 30px rgba(233, 30, 140, 0.15);
    --shadow-hover: 0 8px 40px rgba(233, 30, 140, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Particles ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Gradient Text ===== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.2);
}

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

.nav-logo-img {
    height: 45px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.online-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #00c853;
    font-weight: 500;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.subscribe-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.95);
    padding: 1rem 2rem;
    gap: 0.8rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(233, 30, 140, 0.3); }
    50% { border-color: rgba(233, 30, 140, 0.8); }
}

.hero-logo {
    width: min(500px, 90vw);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(233, 30, 140, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.hero-trust span {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-trust i {
    color: var(--secondary);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Ticker ===== */
.ticker {
    background: var(--gradient);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ===== About / Profile Section ===== */
.about-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.profile-header {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    position: relative;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--secondary);
    font-size: 1.2rem;
    background: var(--bg-card);
    border-radius: 50%;
}

.profile-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.verified-text {
    font-size: 0.75rem;
    color: var(--secondary);
}

.profile-handle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.profile-tagline {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.profile-bio {
    margin-bottom: 1.5rem;
}

.profile-bio p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(233, 30, 140, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.profile-stats-row {
    display: flex;
    justify-content: space-around;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-stats-row div {
    text-align: center;
}

.profile-stats-row strong {
    display: block;
    font-size: 1.1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-stats-row span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

.detail-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: rgba(233, 30, 140, 0.2);
}

.detail-card i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.detail-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.detail-card li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== Feed Section ===== */
.feed-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.feed-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-post {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.feed-post:hover {
    border-color: rgba(233, 30, 140, 0.15);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.post-author {
    flex: 1;
}

.post-author strong {
    font-size: 0.9rem;
}

.post-author span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.post-badge {
    background: rgba(233, 30, 140, 0.15);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.post-badge.nsfw {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

.post-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.post-media {
    margin-bottom: 1rem;
}

.post-media-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.post-media-placeholder:hover {
    background: linear-gradient(135deg, #1f1f35 0%, #1b2645 100%);
}

.post-media-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
}

.post-media-placeholder span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.locked-media {
    border: 1px dashed rgba(233, 30, 140, 0.3);
}

.locked-media i {
    color: var(--text-muted);
}

.post-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-actions button {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.post-actions button:hover {
    background: rgba(233, 30, 140, 0.1);
    color: var(--primary);
}

.post-actions button.liked {
    color: var(--primary);
}

.post-actions button.liked i {
    font-weight: 900;
}

/* Post Poll */
.post-poll {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-poll h4 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.poll-option {
    position: relative;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.poll-option:hover {
    border-color: rgba(233, 30, 140, 0.3);
}

.poll-option.voted {
    border-color: rgba(233, 30, 140, 0.3);
}

.poll-text {
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.poll-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(233, 30, 140, 0.1);
    width: 0;
    transition: width 1s ease;
    border-radius: 8px;
}

.poll-option.voted .poll-bar {
    width: var(--poll-width);
}

.poll-percent {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.poll-option.voted .poll-percent {
    opacity: 1;
}

.poll-votes {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ===== Content Grid ===== */
.content-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.content-card.hidden-card {
    display: none;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.3);
    box-shadow: var(--shadow);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-size: 4rem;
    color: rgba(233, 30, 140, 0.4);
    transition: all 0.4s;
}

.content-card:hover .card-placeholder {
    color: rgba(233, 30, 140, 0.7);
    transform: scale(1.05);
}

.card-placeholder.blurred {
    filter: blur(4px);
}

.card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-badge.free {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.card-badge.premium {
    background: rgba(233, 30, 140, 0.2);
    color: var(--primary);
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.card-badge.ppv {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.6);
    color: white;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.lock-overlay i {
    font-size: 2rem;
    color: var(--primary);
}

.card-body {
    padding: 1rem 1.3rem;
}

.card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.card-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Card Reveal */
.card-reveal {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.content-card.revealed .card-reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal-content {
    text-align: center;
    padding: 1.5rem;
    color: var(--primary);
}

.reveal-content h4 {
    margin: 0.8rem 0 0.4rem;
    font-size: 1rem;
}

.reveal-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Code Block */
.code-block {
    background: #0d1117;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-block code {
    color: #58a6ff;
    font-family: 'Courier New', monospace;
}

.code-comment {
    color: #6e7681 !important;
}

/* Fake Table */
.fake-table {
    font-size: 0.7rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row.header {
    background: rgba(233, 30, 140, 0.15);
    font-weight: 700;
    color: var(--primary);
}

.table-row.highlight {
    background: rgba(0, 191, 255, 0.1);
    font-weight: 700;
    color: var(--secondary);
}

.table-row span {
    text-align: center;
}

.table-row span:first-child {
    text-align: left;
}

/* Mini Chart */
.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
    height: 120px;
    padding: 0.5rem;
}

.chart-bar {
    width: 28px;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease;
    min-height: 10px;
}

.chart-bar span {
    position: absolute;
    bottom: -1.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== Schedule Section ===== */
.schedule-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.schedule-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.schedule-card.live {
    border-color: #ff4444;
    background: linear-gradient(180deg, rgba(255, 68, 68, 0.08) 0%, var(--bg-card) 100%);
    animation: live-pulse 3s infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
    50% { box-shadow: 0 0 20px 0 rgba(255, 68, 68, 0.2); }
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.live-badge {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1s infinite;
}

.upcoming-badge {
    background: rgba(0, 191, 255, 0.15);
    color: var(--secondary);
}

.schedule-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.schedule-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.schedule-meta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.schedule-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.schedule-card .btn-primary,
.schedule-card .btn-secondary {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
}

/* ===== Chat Section ===== */
.chat-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.chat-container {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 140, 0.2);
    overflow: hidden;
}

.chat-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-user strong {
    font-size: 0.9rem;
}

.chat-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chat-messages {
    padding: 1.5rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
}

.chat-message.received {
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.15);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.sent {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.15);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.3rem;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    align-self: flex-start;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.chat-suggestions button {
    background: rgba(233, 30, 140, 0.08);
    border: 1px solid rgba(233, 30, 140, 0.15);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    white-space: nowrap;
}

.chat-suggestions button:hover {
    background: rgba(233, 30, 140, 0.15);
    border-color: var(--primary);
}

.chat-input-row {
    display: flex;
    gap: 0.5rem;
}

.chat-input-row input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 0.85rem;
    font-family: inherit;
}

.chat-input-row input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
}

/* ===== Achievements ===== */
.achievements-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.achievement {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0.4;
}

.achievement.unlocked {
    opacity: 1;
    border-color: rgba(255, 215, 0, 0.3);
}

.achievement.unlocked .achievement-icon {
    color: #ffd700;
}

.achievement:hover {
    transform: translateY(-3px);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.achievement h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.achievement p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.achievement.locked-ach {
    opacity: 0.25;
}

/* ===== Pricing ===== */
.pricing-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-toggle .active {
    color: var(--primary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.save-badge {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.08) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.pricing-header i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li i.fa-check { color: #00c853; }
.pricing-features li i.fa-times { color: #ff4444; }

.pricing-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 50px;
    border: 2px solid rgba(233, 30, 140, 0.3);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.pricing-btn:hover {
    background: rgba(233, 30, 140, 0.1);
    border-color: var(--primary);
}

.featured-btn {
    background: var(--gradient) !important;
    color: white !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.featured-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Comparison Table */
.pricing-comparison {
    text-align: center;
    margin-top: 2rem;
}

.comparison-table {
    display: none;
    margin-top: 1.5rem;
    overflow-x: auto;
}

.comparison-table.active {
    display: block;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.7rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(233, 30, 140, 0.08);
    font-weight: 600;
}

.highlight-col {
    background: rgba(233, 30, 140, 0.05);
}

.green { color: #00c853; }
.red { color: #ff4444; }

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(233, 30, 140, 0.2);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.85rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ===== Merch Section ===== */
.merch-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.merch-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.merch-card.featured-merch {
    border-color: rgba(233, 30, 140, 0.3);
}

.merch-image {
    position: relative;
}

.merch-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.merch-placeholder i {
    font-size: 3rem;
    color: rgba(233, 30, 140, 0.4);
}

.merch-text-preview {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.merch-body {
    padding: 1.2rem;
}

.merch-body h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.merch-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.merch-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ===== Fun Facts ===== */
.fun-facts {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.fact-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.fact-card:hover {
    border-color: rgba(0, 191, 255, 0.3);
    transform: translateY(-3px);
}

.fact-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.fact-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.fact-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.fact-card > p:last-child {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(233, 30, 140, 0.2);
}

.faq-question {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.2rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 140, 0.05) 50%, transparent 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: pulse-border-orange 2s infinite;
}

@keyframes pulse-border-orange {
    0%, 100% { border-color: rgba(255, 107, 53, 0.3); }
    50% { border-color: rgba(255, 107, 53, 0.8); }
}

.cta-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===== Footer ===== */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 0.8rem;
}

.footer-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(233, 30, 140, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: scale(1);
}

.achievement-modal {
    text-align: center;
    max-width: 380px;
}

.achievement-unlock-anim {
    animation: achievement-pop 0.5s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    text-align: center;
}

.modal-body h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.form-group label i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 0.85rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-group small {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    margin-top: 0.3rem;
    font-style: italic;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    accent-color: var(--primary);
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--primary);
    color: var(--text);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 9998;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-hover);
    max-width: 90%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== Confetti Canvas ===== */
#confetti {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
}

/* ===== FAB ===== */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s;
    font-size: 1.3rem;
    color: white;
    animation: fab-pulse 3s infinite;
}

.fab:hover {
    transform: scale(1.1);
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(233, 30, 140, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .content-grid,
    .testimonials-grid,
    .merch-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chat-suggestions {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Selection ===== */
::selection {
    background: rgba(233, 30, 140, 0.3);
    color: white;
}
