* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #F8F5ED;
    color: #231F20;
    line-height: 1.6;
}

/* Corner Logo */
.corner-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #D92323;
}

.corner-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 35vh;
    padding: 25px 0;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(217, 35, 35, 0.3);
}

.logo-text {
    flex: 1;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #231F20;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(35, 31, 32, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    color: #231F20;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: linear-gradient(45deg, #D92323, #B91E1E);
    color: white;
    box-shadow: 0 8px 25px rgba(217, 35, 35, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 35, 35, 0.6);
}

.cta-secondary {
    background: rgba(35, 31, 32, 0.1);
    color: #231F20;
    border: 2px solid #D92323;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(217, 35, 35, 0.1);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.number-display {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #D92323, #B91E1E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(241, 196, 15, 0.4);
    animation: pulse 2s infinite;
}

.number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sections */
.games-showcase, .features-section, .coming-soon-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 30px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.games-showcase h2, .features-section h2, .coming-soon-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #231F20;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.game-card.active {
    border-color: #27ae60;
    background: linear-gradient(135deg, #d5f4e6, #e8f5e8);
}

.game-card.coming-soon {
    opacity: 0.7;
    filter: grayscale(30%);
}

.game-card.coming-soon:hover {
    opacity: 0.9;
    filter: grayscale(10%);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.game-icon {
    font-size: 2.5rem;
}

.game-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-status.active {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.game-status.coming-soon {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
}

.game-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.game-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-stats {
    margin-bottom: 25px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.play-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:not(.disabled) {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.play-btn:not(.disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.play-btn.disabled {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.upcoming-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.upcoming-game {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.upcoming-game:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.game-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.release-date {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.about-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(35, 31, 32, 0.1);
    border: 1px solid #D92323;
}

.about-section h2 {
    color: #231F20;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section p {
    color: #231F20;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.about-section li {
    color: #231F20;
    line-height: 1.5;
    margin-bottom: 8px;
}

.about-section strong {
    color: #D92323;
    font-weight: 600;
}

/* Pages Section */
.pages-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F5ED 0%, #F0F0F0 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.pages-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(35, 31, 32, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #D92323, #B91E1E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(35, 31, 32, 0.15);
    border-color: #D92323;
}

.page-card:hover::before {
    transform: scaleX(1);
}

.page-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.page-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 12px;
    line-height: 1.3;
}

.page-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.page-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #D92323, #B91E1E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 35, 35, 0.3);
}

.page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 35, 35, 0.5);
    background: linear-gradient(45deg, #B91E1E, #8B0000);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 40px 0;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 60px 40px;
}

.footer-section h3 {
    color: #231F20;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #231F20;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: #231F20;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li::before {
    content: "•";
    color: #D92323;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.play-button {
    display: inline-block;
    background: linear-gradient(45deg, #D92323, #B91E1E);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(217, 35, 35, 0.4);
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 35, 35, 0.6);
}

.footer-bottom {
    background: #231F20;
    color: white;
    text-align: center;
    padding: 20px;
}

/* 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 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-showcase, .features-section, .coming-soon-section, .pages-section {
        padding: 40px 20px;
    }
    
    .games-grid, .features-grid, .upcoming-games, .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .number-display {
        width: 150px;
        height: 150px;
    }
    
    .number {
        font-size: 3rem;
    }
} 