/* Modern Gaming Website CSS - DomusGG Brand Colors */

/* CSS Variables for consistent theming */
:root {
    /* DomusGG Brand Colors */
    --primary-color: #FF8C00;        /* Domus Orange - Main brand color */
    --primary-dark: #E07B00;         /* Darker orange for hover states */
    --primary-light: #FFB347;        /* Lighter orange for accents */
    --secondary-color: #FF6B35;      /* Complementary red-orange */
    --secondary-dark: #E55A2B;       /* Darker secondary */
    --accent-color: #FFD700;         /* Gold accent for highlights */
    --accent-dark: #DAA520;          /* Darker gold */
    
    /* Dark Theme Base */
    --bg-primary: #0a0a0a;           /* True black base */
    --bg-secondary: #1a1a1a;         /* Dark gray sections */
    --bg-tertiary: #2a2a2a;          /* Card backgrounds */
    --bg-card: #1f1f1f;              /* Elevated cards */
    --bg-overlay: rgba(10, 10, 10, 0.95);  /* Navigation overlay */
    
    /* Text Colors */
    --text-primary: #ffffff;          /* Pure white text */
    --text-secondary: #e0e0e0;        /* Light gray text */
    --text-muted: #b0b0b0;            /* Muted text */
    --text-accent: #FF8C00;           /* Brand color for accents */
    
    /* Gradients - Updated with brand colors */
    --gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-card: linear-gradient(145deg, #1f1f1f 0%, #2a2a2a 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1810 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', monospace;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows - Updated with orange glow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(255, 140, 0, 0.5);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-hero);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.1);
    transform: translateY(0);
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from { 
        opacity: 0;
        transform: translateY(-100%);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
}

.nav-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 100px 20px;
    background: var(--gradient-hero);
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 106, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 10s ease infinite;
}

/* Smaller hero for content pages */
.hero.content-page {
    min-height: 50vh;
    padding: 80px 0 60px;
}

/* Hero scroll fade effect */
.hero.scroll-fade {
    opacity: 0.7;
    transform: translateY(-20px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.2);
    max-width: 100%;
    word-wrap: break-word;
    contain: layout style;
    will-change: auto;
    animation: fadeInScale 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.floating-element:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 10%; right: 20%; animation-delay: 1s; }
.floating-element:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.6), 0 0 50px rgba(255, 140, 0, 0.3); }
    100% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.3); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    animation: pulse 0.6s ease-in-out;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: var(--transition-bounce);
}

.btn-game {
    background: var(--gradient-secondary);
    color: white;
    width: 100%;
    justify-content: center;
    font-weight: 600;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4 0%, #677BC4 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(88, 101, 242, 0.6);
    animation: pulse 0.6s ease-in-out;
}

/* Games Section */
.games {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    margin-top: 0;
    clear: both;
}

.section-header {
    margin-bottom: 4rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 140, 0, 0.2);
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    border-color: var(--primary-color);
}

.float-animation {
    animation: floatSoft 6s ease-in-out infinite;
}

.game-image {
    position: relative;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.game-status {
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.game-content {
    padding: 2rem;
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.game-genre {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 140, 0, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.game-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Alpha Section */
.alpha-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    margin-top: 0;
    clear: both;
}

.alpha-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.alpha-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alpha-benefits h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.alpha-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alpha-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.alpha-benefits i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.alpha-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px) scale(1.02);
    transition: var(--transition-bounce);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.alpha-form-container {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.alpha-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Discord Invite Styles */
.discord-invite {
    text-align: center;
}

.discord-invite h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.discord-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.community-stats .stat {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: var(--transition-smooth);
}

.community-stats .stat:hover {
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
    transform: translateY(-5px) scale(1.05);
    transition: var(--transition-bounce);
}

.community-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5865F2;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.community-stats .stat-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1), var(--shadow-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-wrap: nowrap;
    width: 100%;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.checkbox-label a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
    vertical-align: middle;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    margin-top: 0;
    clear: both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    margin-top: 0;
    clear: both;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px) scale(1.02);
    transition: var(--transition-bounce);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.5));
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Social Section Styles */
.social-section {
    text-align: center;
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.social-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.social-section .social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: auto;
    height: auto;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.social-section .social-link.discord:hover {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.social-section .social-link.twitter:hover {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
}

.social-section .social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.4);
}

.social-section .social-link.youtube:hover {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.contact-form {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

/* Terms Page Styles */
.terms-intro {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-box {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-notice {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.footer-notice h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-disclaimer {
    background: rgba(255, 140, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
    text-align: center;
}

.footer-reference {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.footer-reference .terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-reference .terms-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 140, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.2);
    }
    
    .hero {
        height: auto;
        min-height: 90vh;
        padding: 80px 20px 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .alpha-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        width: 300px;
        height: 300px;
    }

    .nav-logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        text-shadow: 0 0 3px rgba(255, 140, 0, 0.2);
        margin-bottom: 1rem;
    }
    
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 60px 15px 40px 15px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        margin: 0 10px;
    }

    .alpha-form-container,
    .contact-form {
        padding: 1.5rem;
    }

    .floating-elements {
        width: 250px;
        height: 250px;
    }

    .floating-element {
        font-size: 1.5rem;
    }

    .nav-logo img {
        height: 30px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Loading States and Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Success Messages */
.success-message {
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
    display: none;
    font-weight: 600;
}

.error-message {
    background: #dc2626;
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
    display: none;
    font-weight: 600;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

/* Custom Dropdown for Games Selection */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    min-height: 50px;
}

.dropdown-selected:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.dropdown-selected.open {
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selected-text {
    color: var(--text-secondary);
    flex: 1;
}

.selected-text.has-selection {
    color: var(--text-primary);
}

.dropdown-arrow {
    color: var(--primary-color);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: var(--bg-tertiary);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.dropdown-options.show {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    transform: translateY(0);
}

.dropdown-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    flex-wrap: nowrap;
    width: 100%;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(255, 140, 0, 0.1);
}

.dropdown-option input[type="checkbox"] {
    display: none;
}

.option-checkmark {
    width: 20px;
    height: 20px;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 140, 0, 0.5);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
    vertical-align: middle;
}

.dropdown-option input[type="checkbox"]:checked + .option-checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.dropdown-option input[type="checkbox"]:checked + .option-checkmark::after {
    content: '✓';
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: bold;
}

.game-info {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.game-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.game-genre {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    white-space: nowrap;
}

.game-genre::before {
    content: '(';
}

.game-genre::after {
    content: ')';
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-options.open {
        max-height: 180px;
    }
    
    .dropdown-option {
        padding: 0.75rem;
    }
    
    .game-info {
        gap: 0.25rem;
    }
    
    .game-title {
        font-size: 0.925rem;
    }
    
    .game-genre {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .dropdown-options.show {
        max-height: 150px;
    }
    
    .dropdown-option {
        padding: 0.75rem;
    }
    
    .game-info {
        gap: 0.25rem;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .game-genre {
        font-size: 0.75rem;
    }
}

/* Terms and Privacy Pages Styles */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.terms-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.terms-update {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.lgpd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
}

.terms-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.terms-section h5 {
    color: var(--accent-color);
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul,
.terms-section ol {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.terms-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

/* Specific components for privacy policy */
.contact-info-box {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.data-table {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.legal-basis {
    margin: 1.5rem 0;
}

.purpose-item {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color);
}

.purpose-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sharing-info {
    background: rgba(255, 140, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.cookies-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.cookie-type {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.cookie-type h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.retention-table {
    margin: 1.5rem 0;
}

.retention-item {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.retention-item h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: var(--transition-smooth);
}

.right-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.right-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rights-contact {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.security-measures {
    margin: 1.5rem 0;
}

.security-category {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.security-category h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.minors-policy {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.changes-policy {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.contact-method h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.terms-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

/* Form validation styles - CRITICAL ERROR STYLES */
.form-group input.error,
.form-group select.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3) !important;
}

/* DROPDOWN ERROR - HIGH SPECIFICITY */
.custom-dropdown.error .dropdown-selected,
.form-group .custom-dropdown.error .dropdown-selected {
    border-color: #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5) !important;
    background-color: rgba(255, 68, 68, 0.1) !important;
}

/* CHECKBOX ERROR - HIGH SPECIFICITY */
.checkbox-label input[type="checkbox"].error + .checkmark,
.form-group .checkbox-label input[type="checkbox"].error + .checkmark {
    border-color: #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5) !important;
    background-color: rgba(255, 68, 68, 0.1) !important;
}

/* ENHANCED ERROR VISIBILITY - MAXIMUM SPECIFICITY */
body .custom-dropdown.error .dropdown-selected,
body .form-group .custom-dropdown.error .dropdown-selected {
    border-color: #ff4444 !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6) !important;
    background-color: rgba(255, 68, 68, 0.15) !important;
    animation: shake 0.3s ease-in-out !important;
}

/* CHECKBOX ERROR - MAXIMUM SPECIFICITY */
body .checkbox-label input[type="checkbox"].error + .checkmark,
body .form-group .checkbox-label input[type="checkbox"].error + .checkmark {
    border-color: #ff4444 !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6) !important;
    background-color: rgba(255, 68, 68, 0.15) !important;
    animation: shake 0.3s ease-in-out !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive adjustments for terms pages */
@media (max-width: 768px) {
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-header h2 {
        font-size: 2rem;
    }
    
    .cookies-table,
    .rights-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 1.5rem 1rem;
    }
    
    .terms-section ul,
    .terms-section ol {
        margin-left: 1rem;
    }
} 