* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
}

.logo span {
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffd700;
}

.download-btn {
    background-color: #ffd700;
    color: #1a2a6c;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #ffc800;
    transform: scale(1.05);
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #ffd700;
    color: #1a2a6c;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.features {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffd700;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.tournaments {
    padding: 60px 0;
}

.tournament-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tournament-prize {
    background-color: #ffd700;
    color: #1a2a6c;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 20px;
    min-width: 150px;
    text-align: center;
}

.tournament-info h3 {
    margin-bottom: 5px;
}

.testimonials {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    /* background-color: rgba(255, 255, 255, 0.1); */
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #ffd700;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffd700;
    color: #1a2a6c;
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tournament-card {
        flex-direction: column;
        text-align: center;
    }

    .tournament-prize {
        margin-right: 0;
        margin-bottom: 15px;
    }
}