:root {
    --primary-color: #8B5FBF;
    --primary-color-hover: #6F4A8E;
    --secondary-color: #D8BFD8;
    --accent-color: #4A4A4A;
    --accent-color-medium: #787878;
    --text-dark: #2C2C2C;
    --text-light: #F8F9FA;
    --background-light: #FAFAFA;
}

html, body {
    min-height: 100vh;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* to prevent extra whitespace 08/22/2025 */
footer {
    flex: 0;
}

.btn, .btn.active, .btn-outline-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
}

    .btn:hover, .btn.active:hover, .btn-outline-primary:active {
        background-color: var(--primary-color-hover);
    }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--primary-color-hover);
    }

.btn-tab:not(active) {
    background-color: var(--accent-color-medium);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5FBF, #D8BFD8);
    position: absolute;
    top: 0;
    left: 0;
}

.game-card-image img, .news-card img, .team-member img {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e9ecef"/><text x="50" y="50" text-anchor="middle" dy=".3em" fill="%236c757d" font-family="Arial" font-size="12">No Image</text></svg>');
}


.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,0 1000,300 1000,1000 0,700"/></svg>');
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.game-card {
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .game-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

.news-card {
    border: none;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}