/*
Theme Name: Snazzy SaaS
Theme URI: https://alexreacts.com/
Author: Steven | alexreacts.com
Description: A modern, bold, SaaS-inspired blank slate WordPress theme with a sleek hero section and customizable banner.
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: snazzy-saas
*/

body {
    background: #0a0616;
    color: #f5f5f7;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px 0 48px;
    background: transparent;
}
.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.site-nav a:hover {
    color: #b388ff;
}
.site-cta {
    background: linear-gradient(90deg, #7f5fff 0%, #5e2ced 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 24px;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(94,44,237,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.site-cta:hover {
    background: linear-gradient(90deg, #5e2ced 0%, #7f5fff 100%);
    box-shadow: 0 4px 24px rgba(94,44,237,0.18);
}

.hero {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 48px;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #bdbdbd;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}
.hero-buttons .button {
    background: linear-gradient(90deg, #7f5fff 0%, #5e2ced 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(94,44,237,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-buttons .button.secondary {
    background: #fff;
    color: #7f5fff;
}
.hero-buttons .button:hover {
    background: linear-gradient(90deg, #5e2ced 0%, #7f5fff 100%);
    box-shadow: 0 4px 24px rgba(94,44,237,0.18);
}

.site-banner {
    text-align: center;
    /* background: #23232a; */
    border-radius: 14px;
    margin: 24px auto 24px auto;
    padding: 8px 0;
    max-width: 820px;
    box-shadow: none;
}
.site-banner img {
    max-width: 800px;
    max-height: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    display: inline-block;
}

/* Twitch Live Banner */
.twitch-live-banner {
    background: linear-gradient(135deg, #9146ff 0%, #772ce8 100%);
    margin: 24px auto;
    max-width: 520px;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(145, 70, 255, 0.3);
    border: 1px solid rgba(145, 70, 255, 0.4);
    animation: liveGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

@keyframes liveGlow {
    0% {
        box-shadow: 0 8px 32px rgba(145, 70, 255, 0.3);
    }
    100% {
        box-shadow: 0 8px 40px rgba(145, 70, 255, 0.5);
    }
}

.twitch-live-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.twitch-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.live-text {
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
}

.twitch-live-info {
    flex-shrink: 0;
    text-align: left;
}

.twitch-stream-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.twitch-game {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 8px;
}

.twitch-viewers {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.twitch-watch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #9146ff;
    padding: 12px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.twitch-watch-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #772ce8;
}

.twitch-watch-btn svg {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .twitch-live-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .twitch-live-info {
        text-align: center;
        min-width: auto;
    }
    
    .twitch-live-banner {
        margin: 16px;
        padding: 16px 20px;
    }
    
    .twitch-stream-title {
        font-size: 1rem;
    }
} 