* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    background-color: #ebebeb;
    color: #000;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #05206f 0%, #005a98 100%);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #28a5c5;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(-180deg, #6fe3f5, #065265);
    color: #fff;
    border: 1px solid #065265;
}

.btn-primary:hover {
    background: linear-gradient(-180deg, #065265, #6fe3f5);
}

.btn-secondary {
    background: #28a745;
    color: #fff;
}

.btn-secondary:hover {
    background: #218838;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #05206f 0%, #005a98 50%, #28a5c5 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #05206f;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #28a5c5;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #05206f;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #ebebeb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #28a5c5, #005a98);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #28a5c5;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #05206f;
    font-weight: 600;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #28a5c5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #005a98;
}

/* Sports Section */
.sports {
    padding: 80px 0;
    background: #fff;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sport-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-card:hover {
    background: #28a5c5;
    color: #fff;
}

.sport-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: #fff;
    min-height: 60vh;
}

.page-content h1 {
    color: #05206f;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.page-content h2 {
    color: #05206f;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
}

.page-content h3 {
    color: #005a98;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
}

.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.page-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-date {
    color: #28a5c5;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-post-header h1 {
    color: #05206f;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #28a5c5, #005a98);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    margin-bottom: 40px;
    border-radius: 10px;
}

.blog-post-content {
    line-height: 1.8;
}

.blog-post-content h2 {
    color: #05206f;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #28a5c5;
    padding-bottom: 10px;
}

.blog-post-content h3 {
    color: #005a98;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.blog-post-content h4 {
    color: #005a98;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
}

.blog-post-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-post-cta {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.blog-post-cta h3 {
    color: #05206f;
    margin-bottom: 15px;
}

.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-post-navigation .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-post-navigation .btn {
        text-align: center;
    }
}

.page-content .contact-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.page-content .contact-info h3 {
    color: #28a5c5;
    margin-bottom: 15px;
}

.page-content .contact-info p {
    margin-bottom: 10px;
}

.page-content .contact-info i {
    color: #28a5c5;
    margin-right: 10px;
    width: 20px;
}

.page-content .help-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-content .help-item h3 {
    color: #05206f;
    margin-bottom: 10px;
}

.page-content .terms-section {
    margin-bottom: 40px;
}

.page-content .privacy-section {
    margin-bottom: 40px;
}

.page-content .responsible-gaming-section {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.page-content .responsible-gaming-section h3 {
    color: #28a5c5;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #05206f;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #28a5c5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #28a5c5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #005a98;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
} 