
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #ffd700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #3742fa, #2f3542);
    box-shadow: 0 4px 15px rgba(55, 66, 250, 0.4);
}

.cta-button.secondary:hover {
    box-shadow: 0 6px 20px rgba(55, 66, 250, 0.6);
    background: linear-gradient(45deg, #2f3542, #3742fa);
}

.game-info {
    margin-bottom: 3rem;
}

.game-info h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #5d6d7e;
    font-size: 0.9rem;
}

.game-table-section {
    margin-bottom: 3rem;
}

.game-table-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.table-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.game-table th {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid #ffd700;
}

.game-table td {
    padding: 0.8rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.game-table tr:hover {
    background-color: #f8f9fa;
}

.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    font-weight: bold;
}

.silver {
    background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
    color: #2c3e50;
    font-weight: bold;
}

.bronze {
    background: linear-gradient(45deg, #cd7f32, #daa520);
    color: #2c3e50;
    font-weight: bold;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.content-card p {
    color: #5d6d7e;
    line-height: 1.6;
}

.tips-section {
    margin-bottom: 3rem;
}

.tips-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateX(10px);
}

.tip-number {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.tip-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tip-content p {
    color: #5d6d7e;
    line-height: 1.6;
}

.cta-footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #5d6d7e;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

footer {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .game-table {
        font-size: 0.8rem;
    }
    
    .game-table th,
    .game-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .tip {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .content-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem 0.5rem;
    }
    
    .hero,
    .cta-footer {
        padding: 2rem 1rem;
    }
    
    .table-container {
        padding: 1rem;
    }
}
