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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #060514;
    color: #fff;
    line-height: 1.5;
    animation: pageLoad 0.5s ease-out;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.content-wrapper {
    display: flex;
    flex: 1;
}

.main-content {
    flex: 1;
    padding: 1.5rem;
    animation: fadeIn 0.8s ease-out;
    padding-bottom: 56px;
}

.hero-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 0 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #1f2937, #111827, #1e3a8a);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero-background.png');
    opacity: 0.1;
    z-index: 0;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out, glow 3s infinite;
    transition: transform 0.3s;
}

.live-badge:hover {
    transform: scale(1.05);
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #ef4444;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.live-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.start-streaming-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ef4444;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-streaming-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.start-streaming-button:hover {
    background-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.start-streaming-button:hover::before {
    width: 300%;
    height: 300%;
}

.start-streaming-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.start-streaming-button:hover .button-icon {
    animation: pulse 1s infinite;
}

.browse-games-button {
    background-color: transparent;
    border: 1px solid #4b5563;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.browse-games-button::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.7s;
}

.browse-games-button:hover {
    background-color: #374151;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: #ef4444;
}

.browse-games-button:hover::before {
    left: 100%;
}

.browse-games-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #ef4444;
    display: inline-block;
    position: relative;
}

.hero-description {
    color: #d1d5db;
    max-width: 36rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-content {
        padding: 0rem;
    }
}

@media (max-width: 768px) {
    .mobileOnly .support-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobileOnly .support-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 350px !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 1rem !important;
        background-color: #EF4444;
        color: #FFF;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.25rem;
        border: none !important;
        outline: none !important;
        box-shadow: none;
        transition: background-color 0.2s ease;
        text-align: center;
        transition: background-color 6s ease-out, color 0.2s ease;
    }

    .mobileOnly .support-button:hover {
        background-color: #EF4444;
        outline: none !important;
        box-shadow: none !important;
    }
}

@media only screen and (max-width: 600px) {
    .posts-wrapper {
        /* allow it to shrink to viewport width */
        width: 100% !important;
        max-width: 100% !important;
        /* center it exactly like your button */
        margin: 0 auto !important;
        /* keep padding so corners stay visible */
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        /* include padding in the width calculation */
        box-sizing: border-box !important;
    }
}