/* Global styles used across all pages */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --accent-red: #ff4444;
    --accent-green: #4CAF50;
    --accent-blue: #00bcd4;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: #333333;
}

body { 
    background: var(--bg-primary); 
    color: var(--text-primary); 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Styles */
.header { 
    background: var(--bg-secondary);
    padding: 15px 40px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo { 
    color: var(--accent-red); 
    font-size: 24px; 
    font-weight: 800; 
    text-decoration: none;
    letter-spacing: 1px;
}

.live-cta { 
    background: var(--accent-red); 
    color: white; 
    padding: 10px 24px; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: bold;
    transition: all 0.3s;
}
.live-pulse {
    animation: pulse 1.5s ease-in-out infinite;
    color: #ef4444;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.live-cta:hover {
    background: #ff3333;
    transform: scale(1.05);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .live-cta {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* Add this to assets/css/global.css */

/* Footer Styles */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 13px;
}
/* Full-width sections */
.section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
    position: relative;
}

.section h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.section p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Join Live Section */
.join-live-section {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.join-live-section h1 {
    color: white;
}

.join-live-section p {
    color: rgba(255,255,255,0.9);
}

/* Free Manga Section */
.free-manga-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.offer-badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Shinyu Spa Section */
.shinyu-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid var(--accent-blue);
}

.shinyu-section .btn-primary {
    background: var(--accent-blue);
}

.shinyu-section .btn-primary:hover {
    background: #00acc1;
}

/* Community Cards */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.community-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.community-card p {
    font-size: 16px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Header Countdown Timer - Add this to global.css *//* Header Countdown Timer - Add this to global.css */
/* Only appears when .header-countdown element exists in HTML */

.header-countdown {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-label {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.countdown-time {
    font-size: 18px;
    font-weight: bold;
    color: #ff4444;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.header-cta-btn {
    padding: 10px 24px;
    background: #ff4444;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: 15px;
}

.header-cta-btn:hover {
    background: #ff3333;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .countdown-label {
        font-size: 13px;
    }
    
    .countdown-time {
        font-size: 16px;
    }
    
    .header-cta-btn {
        padding: 8px 18px;
        font-size: 13px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .countdown-label {
        display: none;
    }
    
    .countdown-time {
        font-size: 14px;
    }
    
    .header-cta-btn {
        padding: 6px 14px;
        font-size: 12px;
        margin-left: 8px;
    }
}