/* Ultimate Game Night - Modern Responsive Design V2 */
/* Party Game/Game Show Platform Aesthetic */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-bg: #1A1A2E;
    --light-bg: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header Styles ===== */
.header_section_v2 {
    background: var(--dark-bg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header_section_v2 .navbar {
    padding: 0;
}

.header_section_v2 .navbar-brand {
    padding: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.header_section_v2 .navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.header_section_v2 .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.header_section_v2 .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header_section_v2 .nav-link.btn-nav-cta {
    background: var(--primary-color);
    color: var(--text-light) !important;
    margin-left: 0.5rem;
    font-weight: 600;
}

.header_section_v2 .nav-link.btn-nav-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    color: var(--text-light);
    font-size: 1.5rem;
}

/* ===== Hero Section ===== */
.hero_section {
    background: var(--gradient-1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero_content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.hero_title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero_subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero_description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero_buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn_primary, .btn_secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn_primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #ffd93d;
}

.btn_secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn_secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ===== Features Section ===== */
.features_section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section_subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature_card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature_card:hover::before {
    transform: scaleX(1);
}

.feature_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature_title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature_description {
    color: #666;
    line-height: 1.6;
}

/* ===== Games Showcase Section ===== */
.games_showcase {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.games_showcase .section_title,
.games_showcase .section_subtitle {
    color: var(--text-light);
}

.games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

.game_card_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-4);
}

.game_card_content {
    padding: 1.5rem;
}

.game_card_title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.game_card_description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.game_card_link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game_card_link:hover {
    gap: 1rem;
}

/* ===== CTA Section ===== */
.cta_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    color: var(--text-light);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta_title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta_description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== Footer Styles ===== */
.footer_section_v2 {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer_content {
    margin-bottom: 2rem;
}

.footer_col {
    margin-bottom: 2rem;
}

.footer_title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li {
    margin-bottom: 0.5rem;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer_links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer_text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter_form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter_input {
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter_input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter_btn {
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter_btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.social_icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social_icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright_section_v2 {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright_text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== About Page Styles ===== */
.about_hero {
    background: var(--gradient-3);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.about_content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.about_text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about_highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about_features_list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about_features_list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.about_features_list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about_features_list li strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero_title {
        font-size: 2.5rem;
    }
    
    .hero_subtitle {
        font-size: 1.2rem;
    }
    
    .hero_description {
        font-size: 1rem;
    }
    
    .section_title {
        font-size: 2rem;
    }
    
    .features_grid,
    .games_grid {
        grid-template-columns: 1fr;
    }
    
    .hero_buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn_primary,
    .btn_secondary {
        width: 100%;
        justify-content: center;
    }
    
    .header_section_v2 .nav-link.btn-nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .newsletter_form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero_title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero_section {
        padding: 60px 0;
        min-height: 500px;
    }
}

/* ===== Auth Pages (Login/Register) ===== */
.auth_section {
    padding: 80px 0;
    background: var(--gradient-1);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth_container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth_card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    animation: fadeInUp 0.6s ease;
}

.auth_header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth_title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.auth_subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.auth_message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form_label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form_label i {
    color: var(--primary-color);
}

.form_input {
    padding: 0.875rem 1rem;
    border: 2px solid #e1e4e8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    width: 100%;
}

.form_input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form_input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form_help {
    font-size: 0.85rem;
    color: #666;
    margin-top: -0.25rem;
}

.checkbox_group {
    flex-direction: row;
    align-items: center;
}

.checkbox_label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox_label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox_label a {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox_label a:hover {
    text-decoration: underline;
}

.form_group_actions {
    align-items: flex-end;
}

.forgot_link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot_link:hover {
    text-decoration: underline;
}

.btn_auth_submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn_auth_submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.auth_footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e4e8;
    color: #666;
    font-size: 0.95rem;
}

.auth_footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth_footer a:hover {
    text-decoration: underline;
}

/* ===== Pricing Page ===== */
.pricing_section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing_header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing_card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing_card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    transform: scale(1.05);
}

.pricing_card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing_card_title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing_card_price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing_card_period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing_card_features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing_card_features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.pricing_card_features li:last-child {
    border-bottom: none;
}

.pricing_card_features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.pricing_card_button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing_card_button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing_card.featured .pricing_card_button {
    background: var(--accent-color);
    color: var(--text-dark);
}

.pricing_card.featured .pricing_card_button:hover {
    background: #ffd93d;
}

/* ===== Contact Page ===== */
.contact_section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact_header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact_form_card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact_info_card {
    background: var(--gradient-3);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: white;
}

.contact_info_item {
    margin-bottom: 2rem;
}

.contact_info_item h3 {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact_info_item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact_info_item i {
    font-size: 1.5rem;
}

/* ===== Terms Page ===== */
.terms_section {
    padding: 80px 0;
    background: var(--light-bg);
}

.terms_content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.terms_content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms_content h2:first-child {
    margin-top: 0;
}

.terms_content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.terms_content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms_content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ===== Product Page ===== */
.product_section_v2 {
    padding: 10px 0;
    background: var(--light-bg);
}

.product_category {
    margin-bottom: 4rem;
}

.product_category_title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Games and Tools Grid (matching Account directory style) */
.games-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.games-page-header h1,
.games-page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.games-page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.game-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    width: 100%;
    height: 313px;
    background: var(--gradient-4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-placeholder {
    font-size: 4rem;
    color: rgba(255, 107, 53, 0.3);
}

.game-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.tool-description-wrapper {
    flex-grow: 1;
    min-height: 60px;
    margin-bottom: 1rem;
}

.tool-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.btn-start-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.btn-start-game:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.no-games-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-games-message p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* ===== Responsive Updates ===== */
@media (max-width: 768px) {
    .auth_card {
        padding: 2rem 1.5rem;
    }
    
    .contact_content {
        grid-template-columns: 1fr;
    }
    
    .pricing_card.featured {
        transform: scale(1);
    }
    
    .pricing_grid {
        grid-template-columns: 1fr;
    }
    
    .product_items_grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Utility Classes ===== */
.text_center {
    text-align: center;
}

.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; }

/* ===== Homepage Carousel Section ===== */
.homepage_carousel_section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel_slide_wrapper {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.gameshow_slide {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #3d2b5e 100%);
    position: relative;
}

.partygames_slide {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #4a2c6e 100%);
    position: relative;
}

.accessories_slide {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #3d2b5e 100%);
    position: relative;
}

.carousel_slide_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(75, 0, 130, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.carousel_content_left {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.carousel_small_title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel_large_title {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.carousel_description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.carousel_join_btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a3e;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4), 0 0 0 3px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel_join_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.carousel_join_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.carousel_join_btn:hover::before {
    left: 100%;
}

.carousel_visual_right {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

/* Game Show Stage Visual */
.gameshow_stage_visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage_rings {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.1) 21%, rgba(255, 255, 255, 0.1) 22%, transparent 23%),
                radial-gradient(circle, transparent 30%, rgba(255, 255, 255, 0.1) 31%, rgba(255, 255, 255, 0.1) 32%, transparent 33%),
                radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.1) 41%, rgba(255, 255, 255, 0.1) 42%, transparent 43%);
    background-size: 200px 200px, 300px 300px, 400px 400px;
    background-position: center;
    animation: rotateRings 20s linear infinite;
}

@keyframes rotateRings {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stage_spotlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(100, 150, 255, 0.3) 0%, transparent 100%);
    clip-path: polygon(20% 0%, 30% 100%, 10% 100%),
              polygon(50% 0%, 60% 100%, 40% 100%),
              polygon(80% 0%, 90% 100%, 70% 100%);
}

.stage_podiums {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
}

.podium {
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.podium::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #4169E1;
    border-radius: 8px 8px 0 0;
}

.podium::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 20px;
    background: #4169E1;
    border-radius: 0 0 8px 8px;
}

.podium_screen {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: #1a1a3e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Party Games Visual */
.party_games_visual {
    position: relative;
    width: 100%;
    height: 500px;
}

.jenga_photo_frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 80%;
    max-width: 500px;
    height: 400px;
    border: 8px solid white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: #2d1b4e;
}

.jenga_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating_cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card_float {
    position: absolute;
    width: 120px;
    height: 160px;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card_1 {
    top: 10%;
    right: 10%;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: rotate(15deg);
    animation: floatCard1 3s ease-in-out infinite;
}

.card_2 {
    bottom: 15%;
    right: 15%;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    transform: rotate(-10deg);
    animation: floatCard2 3s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-10deg) translateY(-15px); }
}

.floating_dice {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dice {
    position: absolute;
    font-size: 4rem;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: floatDice 4s ease-in-out infinite;
}

.dice_1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dice_2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.dice_3 {
    top: 15%;
    left: 5%;
    animation-delay: 0.5s;
}

.dice_4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes floatDice {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hourglass_visual {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 20%, 100% 40%, 50% 50%, 0% 40%, 0% 20%),
              polygon(30% 100%, 70% 100%, 100% 80%, 100% 60%, 50% 50%, 0% 60%, 0% 80%);
    opacity: 0.7;
}

/* Accessories Visual */
.accessories_visual {
    position: relative;
    width: 100%;
    height: 500px;
}

.spinner_wheel {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #FFD700 0deg 45deg,
        #87CEEB 45deg 90deg,
        #FF69B4 90deg 135deg,
        #FF4500 135deg 180deg,
        #FFA500 180deg 225deg,
        #32CD32 225deg 270deg,
        #9370DB 270deg 315deg,
        #FFD700 315deg 360deg
    );
    border: 8px solid #1a1a3e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.spinner_wheel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #FF0000;
    z-index: 10;
}

.bingo_cards {
    position: absolute;
    bottom: 20%;
    right: 5%;
    display: flex;
    gap: 15px;
    transform: rotate(-5deg);
}

.bingo_card {
    width: 150px;
    height: 180px;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bingo_green {
    background: #228B22;
}

.bingo_orange {
    background: #FF8C00;
}

.bingo_numbers {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1.4;
}

.bingo_cage {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 100px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    opacity: 0.7;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 2rem;
    color: white;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 8px;
}

.carousel-indicators li.active {
    background: #FFD700;
    border-color: #FFD700;
}

/* Responsive Design for Carousel */
@media (max-width: 992px) {
    .carousel_large_title {
        font-size: 3.5rem;
    }
    
    .carousel_small_title {
        font-size: 1.5rem;
    }
    
    .carousel_description {
        font-size: 1rem;
    }
    
    .gameshow_stage_visual,
    .party_games_visual,
    .accessories_visual {
        height: 400px;
    }
    
    .stage_podiums {
        gap: 15px;
    }
    
    .podium {
        width: 80px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .carousel_slide_wrapper {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .carousel_large_title {
        font-size: 2.5rem;
    }
    
    .carousel_small_title {
        font-size: 1.2rem;
    }
    
    .carousel_join_btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .carousel_visual_right {
        margin-top: 2rem;
    }
    
    .gameshow_stage_visual,
    .party_games_visual,
    .accessories_visual {
        height: 300px;
    }
    
    .stage_podiums {
        gap: 10px;
    }
    
    .podium {
        width: 60px;
        height: 90px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}
