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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 0 10px;
}

html, body {
  overflow-x: hidden;
  position: relative;
}

/* Header Styles */
.primary-navigation-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 15px 15px;
}

.main-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand-logo {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.menu-item-primary {
    font-weight: 500;
    color: #0f3460;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-item-primary:hover {
    color: #ff6b35;
}

.nav-link-standard {
    text-decoration: none;
    color: inherit;
}

.active-page-item {
    color: #ff6b35;
    font-weight: bold;
}

.user-actions-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-register-account, .btn-login-account {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.btn-register-account {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-login-account {
    background: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
}

.btn-register-account:hover, .btn-login-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-line-top, .hamburger-line-middle, .hamburger-line-bottom {
    width: 25px;
    height: 3px;
    background: #0f3460;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sports Hero Section */
.sports-hero-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sports-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sports-main-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sports-hero-description {
    font-size: 1.3rem;
    color: #b8c6db;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-sports-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sports-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #b8c6db;
    font-size: 1rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-bet-now, .btn-live-odds {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-bet-now {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-live-odds {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-bet-now:hover, .btn-live-odds:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.sports-hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Popular Sports Section */
.popular-sports-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.section-title-main {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

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

.sport-category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sport-category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sport-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sport-leagues {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.league-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.sport-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sport-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    color: #b8c6db;
    font-size: 0.9rem;
}

.btn-bet-sport {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-bet-sport:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

/* Live Betting Section */
.live-betting-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.live-betting-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.live-betting-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.live-betting-description {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.live-features-list {
    margin-bottom: 2rem;
}

.live-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.live-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.live-feature-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.live-feature-text {
    color: #b8c6db;
    line-height: 1.6;
}

.btn-live-betting {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-live-betting:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.live-match-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

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

.live-indicator {
    color: #ff4444;
    font-weight: bold;
    font-size: 0.9rem;
}

.match-time {
    color: white;
    font-weight: bold;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-score {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
}

.vs-separator {
    color: #b8c6db;
    font-size: 0.9rem;
}

.live-odds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.odds-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.odds-option:hover {
    background: rgba(255, 107, 53, 0.2);
}

.odds-label {
    color: #b8c6db;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.odds-value {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.additional-markets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.market-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 5px;
    color: #b8c6db;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.market-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.match-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    color: #b8c6db;
    font-size: 0.9rem;
}

.stat-label {
    font-weight: 500;
}

.stat-value {
    color: white;
}

/* Betting Markets Section */
.betting-markets-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.market-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.market-category:hover {
    transform: translateY(-5px);
}

.market-category-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.market-types-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.market-type {
    color: #b8c6db;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-description {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.9rem;
}

.markets-additional-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.additional-info-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.info-icon {
    font-size: 1.5rem;
}

.info-text {
    color: #b8c6db;
    font-size: 0.95rem;
}

/* Local Sports Section */
.local-sports-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.local-sports-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.local-sports-subtitle {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.local-sports-description {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.local-leagues-info {
    margin-bottom: 2rem;
}

.league-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.league-name {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.league-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.league-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.league-feature {
    color: #b8c6db;
    font-size: 0.9rem;
}

.local-sports-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.stats-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8c6db;
    font-size: 0.9rem;
}

.btn-local-sports {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-local-sports:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.local-sports-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Betting Tips Section */
.betting-tips-wrapper {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

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

.tip-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tip-category:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tip-item {
    color: #b8c6db;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-description {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.betting-tips-summary {
    background: rgba(220, 53, 69, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.summary-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.summary-text {
    color: #b8c6db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.responsible-betting-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-responsible, .btn-help {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-responsible {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-help {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-responsible:hover, .btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* How to Bet Section */
.how-to-bet-wrapper {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.betting-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-description {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.requirement {
    color: #b8c6db;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.step-note {
    color: #ff6b35;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.btn-step-action {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-step-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.betting-demo-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.demo-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.demo-bet-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.demo-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-match, .demo-market, .demo-odds {
    color: #b8c6db;
    font-size: 1rem;
}

.demo-odds {
    color: #ff6b35;
    font-weight: bold;
}

.demo-calculation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-stake, .demo-potential, .demo-profit {
    color: white;
    font-weight: bold;
}

.demo-profit {
    color: #28a745;
}

.demo-explanation {
    color: #b8c6db;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.site-footer-wrapper {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-radius: 20px 20px 0 0;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods-section {
    margin-bottom: 3rem;
}

.payment-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon-item {
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-icon-item:hover {
    transform: scale(1.1);
}

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

.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-links-list, .footer-contact-list {
    list-style: none;
}

.footer-link-item {
    color: #b8c6db;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #ff6b35;
}

.contact-item {
    color: #b8c6db;
    padding: 0.5rem 0;
}

.footer-disclaimer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer-text {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright-text {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
.navigation-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
    
 .navigation-menu-wrapper.mobile-active {
    transform: translateX(0);
  }
  
   .navigation-menu-wrapper.mobile-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }
    
    .primary-menu-list {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .sports-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sports-main-title {
        font-size: 2.5rem;
    }
    
    .live-betting-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .local-sports-content-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .markets-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .betting-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-navigation-container {
        padding: 1rem;
    }
    
    .sports-main-title {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-sports-highlights {
        justify-content: center;
    }
    
    .live-odds-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-betting-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0 5px;
    }
    
    .sports-hero-wrapper {
        padding: 2rem 1rem;
    }
    
    .sports-main-title {
        font-size: 1.8rem;
    }
    
    .sport-category-card {
        padding: 2rem;
    }
    
    .live-match-card {
        padding: 1.5rem;
    }
    
    .market-category {
        padding: 1.5rem;
    }
    
    .tip-category {
        padding: 1.5rem;
    }
    
    .betting-step {
        padding: 1.5rem;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .sports-main-title {
        font-size: 1.5rem;
    }
    
    .section-title-main {
        font-size: 1.5rem;
    }
    
    .hero-sports-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .sport-leagues {
        justify-content: center;
    }
    
    .btn-register-account, .btn-login-account {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}
