/* Trade'A'Them Sales Website - Main Stylesheet */
/* Based on the official app theme - Dark theme with neon orange accents */

:root {
    /* Primary Colors from app theme */
    --primary-base: #2A2D34;
    --accent: #FF6F00;
    --accent2: #FF8F3B;
    --secondary: #8A8D91;
    
    /* Status Colors */
    --success: #00FF94;
    --error: #FF3C38;
    --warning: #FFCC00;
    
    /* Text Colors */
    --text-primary: #E5E5E5;
    --text-muted: #A3A6AC;
    
    /* Background Colors */
    --background: #101215;
    --panel-bg: #1C1F26;
    --input-bg: #1C1F26;
    --input-border: #444444;
    
    /* Typography */
    --font-main: 'JetBrains Mono', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-fallback);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Tradeathemlogonobackghround.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.75rem;
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Site Header */
.site-header {
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, var(--background) 100%);
    text-align: center;
    padding: 2.5rem 0;
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.5);
    position: relative;
    min-height: 150px;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.site-header img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 111, 0, 0.9)) 
            brightness(1.2) 
            contrast(1.1);
    display: block;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: rgba(16, 18, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navbar brand styles removed - logo now in header */

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    background-color: var(--primary-base);
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, rgba(16, 18, 21, 0.70) 0%, rgba(42, 45, 52, 0.70) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.15) 0%, transparent 50%);
    animation: rotate-gradient 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero header/banner styles removed - now in site-header */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 4rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 30px rgba(255, 111, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-primary {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--background);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--success);
    color: var(--success);
}

.btn-secondary:hover {
    background-color: var(--success);
    color: var(--background);
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.5);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: rgba(16, 18, 21, 0.70);
}

.section-light {
    background-color: rgba(28, 31, 38, 0.70);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.feature-card {
    background: linear-gradient(135deg, var(--panel-bg) 0%, rgba(42, 45, 52, 0.95) 100%);
    border: 2px solid var(--input-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.3), inset 0 0 20px rgba(255, 111, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
}

/* Edition Cards */
.edition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.edition-card {
    background: var(--panel-bg);
    border: 3px solid var(--input-border);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.edition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
}

.edition-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(255, 111, 0, 0.3);
}

.edition-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-main);
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 111, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 111, 0, 0.7);
    }
}

.edition-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.edition-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
    font-family: var(--font-main);
}

.edition-price small {
    font-size: 1rem;
    color: var(--text-muted);
}

.edition-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.edition-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--input-border);
    color: var(--text-muted);
}

.edition-features li:last-child {
    border-bottom: none;
}

.edition-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    margin-right: 0.75rem;
}

.edition-features li.disabled::before {
    content: '✗';
    color: var(--error);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--panel-bg) 0%, rgba(42, 45, 52, 0.8) 100%);
    border-radius: 12px;
    border: 2px solid var(--input-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 111, 0, 0.3);
    transform: translateY(-5px);
}

.stat-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, var(--panel-bg) 100%);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 111, 0, 0.5));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-main);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    margin-top: 3rem;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--panel-bg);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--input-border);
}

.comparison-table th {
    background: var(--primary-base);
    color: var(--accent);
    font-family: var(--font-main);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255, 111, 0, 0.05);
}

/* Footer */
.footer {
    background-color: rgba(42, 45, 52, 0.70);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--input-border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Header */
    .site-header {
        padding: 1.5rem 0;
        min-height: 100px;
    }
    
    .site-header img {
        max-height: 120px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        width: 100%;
    }
    
    .navbar-menu a {
        width: 90%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .promo-banner {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .promo-banner h3 {
        font-size: 1.25rem;
    }
    
    .promo-banner p {
        font-size: 0.95rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Edition Cards */
    .edition-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .edition-card {
        padding: 2rem 1.5rem;
    }
    
    .edition-price {
        font-size: 2.25rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    /* Live Prices */
    .live-prices-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Comparison Table */
    .comparison-table {
        font-size: 0.875rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section ul {
        padding: 0;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .site-header img {
        max-height: 80px;
    }
    
    .navbar-menu a {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .promo-banner h3 {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.text-success {
    color: var(--success);
}

.text-error {
    color: var(--error);
}

.text-warning {
    color: var(--warning);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Eye-catching banner styles */
.promo-banner {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2) 0%, rgba(255, 143, 59, 0.2) 100%);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 111, 0, 0.3);
    animation: pulse-border 3s ease-in-out infinite;
}

.promo-banner::before {
    content: '🔥';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 100px;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.promo-banner::after {
    content: '🚀';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite reverse;
}

.promo-banner h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 148, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--success);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 255, 148, 0.1);
}

.highlight-box.warning {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, transparent 100%);
    border-left-color: var(--warning);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.1);
}

.highlight-box.error {
    background: linear-gradient(135deg, rgba(255, 60, 56, 0.1) 0%, transparent 100%);
    border-left-color: var(--error);
    box-shadow: 0 4px 20px rgba(255, 60, 56, 0.1);
}

/* Live Kraken Data Styles */
.live-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.live-price-card {
    background: linear-gradient(135deg, var(--panel-bg) 0%, rgba(42, 45, 52, 0.95) 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.2);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 111, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 111, 0, 0.4);
    }
}

.live-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(255, 111, 0, 0.4);
}

.crypto-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-main);
    margin-bottom: 0.5rem;
}

.crypto-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-main);
    margin-bottom: 0.5rem;
}

.crypto-change {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.crypto-volume {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===========================
   INTRO EXPERIENCE STYLES
   =========================== */

/* Intro Overlay - Full screen container */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s ease-out;
    opacity: 1;
}

.intro-overlay.dissolve {
    opacity: 0;
    pointer-events: none;
}

/* Video Container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    transition: opacity 0.3s ease-out;
    z-index: 1;
}

/* Video Element - FULL SCREEN */
.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Changed from 'contain' to 'cover' for full-screen fill */
}

/* Matrix Canvas */
.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
    background-color: #000;
}

/* Skip Intro Button */
.skip-intro-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 111, 0, 0.2);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.skip-intro-btn:hover {
    background: rgba(255, 111, 0, 0.4);
    color: var(--accent2);
    border-color: var(--accent2);
    box-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    transform: translateY(-2px);
}

.skip-intro-btn:active {
    transform: translateY(0);
}

/* Unmute Button */
.unmute-btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 148, 0.2);
    border: 2px solid var(--success);
    color: var(--success);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unmute-btn:hover {
    background: rgba(0, 255, 148, 0.4);
    border-color: var(--success);
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.5);
    transform: translateY(-2px);
}

.unmute-btn:active {
    transform: translateY(0);
}

.unmute-btn.muted {
    border-color: var(--warning);
    color: var(--warning);
    background: rgba(255, 204, 0, 0.2);
    animation: pulse-unmute 2s ease-in-out infinite;
}

.unmute-btn.muted:hover {
    background: rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

@keyframes pulse-unmute {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    }
}

.unmute-btn svg {
    width: 24px;
    height: 24px;
}

.unmute-btn.hidden {
    display: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .intro-video {
        object-fit: cover;
    }
    
    .skip-intro-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .unmute-btn {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .unmute-btn span {
        display: none;
    }
    
    .unmute-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .skip-intro-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .unmute-btn {
        padding: 0.4rem 0.8rem;
    }
}
