/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Color Variables - Silver Exch Theme */
:root {
    --primary-black: #000000;
    --secondary-black: #111111;
    --primary-grey: #333333;
    --secondary-grey: #cccccc;
    --bright-yellow: #ffeb3b;
    --golden-orange: #ff9800;
    --teal-cyan: #00bcd4;
    --dark-teal: #0097a7;
    --hover-teal: #26c6da;
    --accent-yellow: #fff176;
    --accent-orange: #ffb74d;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    border-bottom: 1px solid #333333;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.logo h1 {
    background: linear-gradient(45deg, var(--bright-yellow), var(--teal-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--teal-cyan);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--teal-cyan);
    background-color: #222222;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-login:hover {
    border-color: var(--teal-cyan);
    color: var(--teal-cyan);
}

.btn-signup {
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
}

.btn-signup:hover {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--bright-yellow), var(--teal-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 235, 59, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #333333;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    border-color: var(--teal-cyan);
    color: var(--teal-cyan);
}

.hero-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333333;
}

.banner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2rem;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-yellow);
    margin-bottom: 1rem;
}

.banner-slide p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Live Betting Section */
.live-betting {
    padding: 80px 0;
    background-color: #0f0f0f;
}

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

.betting-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.betting-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal-cyan);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
}

.match-info {
    margin-bottom: 1.5rem;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team {
    color: #ffffff;
}

.vs {
    color: var(--teal-cyan);
    font-weight: 700;
}

.match-time {
    text-align: center;
    color: var(--teal-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.tournament {
    text-align: center;
    color: #cccccc;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.odds {
    margin-bottom: 1.5rem;
}

.odd-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.odd-option:hover {
    background-color: #333333;
}

.team-name {
    color: #ffffff;
    font-weight: 500;
}

.odd-value {
    color: var(--teal-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-bet {
    width: 100%;
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    font-weight: 600;
    padding: 0.75rem;
}

.btn-bet:hover {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background-color: #000000;
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.game-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.games-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal-cyan);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
}

.game-image {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--teal-cyan);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
    transition: all 0.3s ease;
}

.game-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.3);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-image:hover img {
    transform: scale(1.1);
}

.game-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.game-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-play {
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.4);
}

/* Footer */
.footer {
    background-color: #111111;
    border-top: 1px solid #333333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--teal-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: var(--teal-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.badge i {
    color: var(--teal-cyan);
}

.footer-bottom p {
    color: #cccccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #333333;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    color: #cccccc;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--teal-cyan);
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal-cyan);
}

.forgot-password {
    display: block;
    text-align: center;
    color: var(--teal-cyan);
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .betting-grid {
        grid-template-columns: 1fr;
    }
    
    .games-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.betting-card,
.game-card {
    animation: fadeIn 0.6s ease-out;
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    background-color: #000000;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Cricket Page Styles */
.cricket-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.match-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-header h3 {
    color: var(--teal-cyan);
    font-size: 1.2rem;
}

.match-status {
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.match-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.team img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.betting-options {
    margin-bottom: 1.5rem;
}

.bet-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.bet-option:hover {
    background-color: #333333;
}

.odds {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.match-info {
    margin-bottom: 1rem;
}

.match-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.match-info i {
    color: var(--teal-cyan);
    width: 16px;
}

/* Stats Grid */
.cricket-stats {
    margin-top: 3rem;
}

.cricket-stats h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
}

.stat-card h3 {
    color: var(--teal-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.stat-card ul {
    list-style: none;
}

.stat-card li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.stat-card li:last-child {
    border-bottom: none;
}

/* Promotions Page Styles */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promotion-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2);
}

.promotion-card.featured {
    border-color: var(--teal-cyan);
    background: linear-gradient(135deg, #1a1a1a 0%, #1e2a3a 100%);
}

.promotion-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promotion-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--teal-cyan);
}

.promotion-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.promotion-description {
    color: #cccccc;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promotion-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #cccccc;
    font-size: 0.9rem;
}

.detail-item .value {
    color: var(--teal-cyan);
    font-weight: 600;
}

.terms-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.terms-section h2 {
    color: var(--teal-cyan);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.terms-content ul {
    list-style: none;
}

.terms-content li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.terms-content li:last-child {
    border-bottom: none;
}

.terms-content li::before {
    content: "•";
    color: var(--teal-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bright-yellow), var(--golden-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000000;
    flex-shrink: 0;
}

.method-details h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-details p {
    color: var(--teal-cyan);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.availability {
    color: #cccccc;
    font-size: 0.8rem;
}

.contact-form-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-cyan);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--teal-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Legal Page Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.legal-section h2 {
    color: var(--teal-cyan);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin-left: 1rem;
}

.legal-section li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
    line-height: 1.6;
}

.legal-section li:last-child {
    border-bottom: none;
}

.legal-section li::before {
    content: "•";
    color: var(--teal-cyan);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--teal-cyan);
}

.legal-notice {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e2a3a 100%);
    border: 1px solid var(--teal-cyan);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.legal-notice p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.legal-notice strong {
    color: var(--teal-cyan);
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal-cyan);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, var(--bright-yellow), var(--golden-orange));
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #cccccc;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    color: var(--teal-cyan);
    font-size: 0.8rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--teal-cyan);
}

.blog-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: #333333;
    color: var(--teal-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--teal-cyan);
    color: #000000;
}

.read-more {
    color: var(--teal-cyan);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: var(--hover-teal);
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #1e2a3a 100%);
    border: 1px solid var(--teal-cyan);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.blog-cta h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--teal-cyan);
}

.newsletter-input::placeholder {
    color: #cccccc;
}

/* Blog Post Page Styles */
.blog-post {
    padding: 120px 0 80px;
    background-color: #000000;
}

.blog-post .container {
    max-width: 1000px;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--teal-cyan);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--teal-cyan);
}

.blog-post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-excerpt {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.post-excerpt p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.blog-post-content article {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 2.5rem;
}

.blog-post-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.blog-post-content h2:first-of-type {
    margin-top: 0;
}

.blog-post-content h3 {
    color: var(--teal-cyan);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.blog-post-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.blog-post-content ul,
.blog-post-content ol {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content strong {
    color: var(--teal-cyan);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-widget h3 {
    color: var(--teal-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333333;
}

.sidebar-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--teal-cyan);
}

.odds-widget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.odds-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.odds-item:hover {
    background-color: #333333;
}

.odds-item span:first-child {
    color: #cccccc;
    font-size: 0.9rem;
}

.odds-item .odds {
    color: var(--teal-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-post-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-cyan);
} 