/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Russo+One&family=Outfit:wght@300;400;600;700;900&display=swap');

/* CSS Variables */
:root {
    --primary-magenta: #E91E8C;
    --primary-purple: #6B2D99;
    --primary-violet: #7B3FF2;
    --accent-cyan: #00D9FF;
    --accent-yellow: #FFD700;
    --dark-bg: #0A0A0F;
    --darker-bg: #050508;
    --card-bg: #1A1A24;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B8;
    --gradient-main: linear-gradient(135deg, #E91E8C 0%, #6B2D99 100%);
    --gradient-alt: linear-gradient(135deg, #00D9FF 0%, #7B3FF2 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0.8) 0%, rgba(10,10,15,0.95) 100%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--darker-bg);
    border-bottom: 2px solid var(--primary-magenta);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.bet-text {
    color: var(--primary-magenta);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-magenta);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-magenta);
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: var(--primary-magenta);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.btn-signup {
    background: var(--gradient-main);
    color: var(--text-light);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-magenta);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    background-image: url(assets/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Featured Games */
.featured-games {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.game-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background-size: cover;
    background-position: center;
}

.game-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Casino Info Section */
.casino-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A24 0%, #2A1A3D 100%);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-magenta);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-magenta);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Mobile Gaming Section */
.mobile-gaming {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}


.phone-mockup {
    width: 100%;
    height: 500px;
    background: url("phone-frame.png");
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.5);
    overflow: hidden; /* prevents overflow outside rounded corners */
    
}

.phone-mockup video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;   /* same as background-size: cover */
    transform: translate(-50%, -50%);

    border-radius: 30px;
}

.mobile-text h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 2px solid var(--primary-magenta);
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.app-btn:hover {
    background: var(--primary-magenta);
    transform: scale(1.05);
}

.app-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-magenta);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-magenta);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--primary-magenta);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-magenta);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(233, 30, 140, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    margin: 5% auto;
    padding: 2.5rem;
    border: 2px solid var(--primary-magenta);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--primary-magenta);
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-family: 'Russo One', sans-serif;
    text-align: center;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-gray);
}

.form-group input {
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 2px solid rgba(233, 30, 140, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 10px rgba(233, 30, 140, 0.3);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.link {
    color: var(--primary-magenta);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--gradient-main);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.5);
}

.form-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Page Header (for guide, florida, news pages) */
.page-header {
    position: relative;
    background: var(--gradient-main);
    padding: 5rem 0 3rem;
    text-align: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.header-icon {
    font-size: 4rem;
    margin-top: 1rem;
}

/* Featured Guide */
.featured-guide {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.guide-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.guide-card.featured {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.guide-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.guide-overlay {
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.guide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.6) 0%, rgba(107, 45, 153, 0.6) 100%);
    z-index: 1;
}

.guide-overlay h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.guide-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

.guide-content {
    padding: 2rem;
}

.guide-date {
    color: var(--primary-magenta);
    font-weight: 600;
    font-size: 0.9rem;
}

.guide-content h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
    font-weight: 700;
}

.guide-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Guides Section */
.guides-section {
    padding: 3rem 0;
    background: var(--darker-bg);
}

.section-title-alt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-main);
    color: var(--text-light);
    border-color: var(--primary-magenta);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-card .guide-image {
    height: 250px;
}

.guide-card h4 {
    font-size: 1.2rem;
    margin: 0.8rem 0;
}

.tab-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    background: var(--card-bg);
    color: var(--text-light);
    border: 2px solid var(--primary-magenta);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.page-btn.active,
.page-btn:hover {
    background: var(--primary-magenta);
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--gradient-main);
}

.section-title-video {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-thumbnail {
    background: var(--darker-bg);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.5);
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(233, 30, 140, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    z-index: 2;
}

.video-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1.3;
    opacity: 0.7;
}

.btn-more-videos {
    background: var(--text-light);
    color: var(--primary-magenta);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-more-videos:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

/* Florida Sports Betting Styles */
.florida-hero {
    background: linear-gradient(135deg, #6B2D99 0%, #E91E8C 50%, #7B3FF2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.florida-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.florida-promo {
    text-align: center;
    position: relative;
    z-index: 2;
}

.promo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

.promo-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.promo-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.promo-amount {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.promo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.btn-claim-large {
    background: white;
    color: var(--primary-magenta);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

.btn-claim-large:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

.promo-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.quick-info {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.section-title-center {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.info-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-magenta);
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.8;
}

.florida-info-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-magenta);
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
}

.featured-markets {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.market-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.market-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.market-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-learn {
    background: transparent;
    color: var(--primary-magenta);
    border: 2px solid var(--primary-magenta);
    padding: 0.8rem 2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-learn:hover {
    background: var(--primary-magenta);
    color: white;
}

.sports-coverage {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.coverage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stadium-bg {
    width: 100%;
    height: 400px;
    background: url('assets/florida-9.jpg') center/cover;
    border-radius: 20px;
}

.coverage-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.coverage-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sports-list {
    display: grid;
    gap: 1rem;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
}

.sport-icon {
    font-size: 1.5rem;
}

.get-started {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.responsible-gaming {
    padding: 4rem 0;
    background: var(--darker-bg);
    text-align: center;
}

.responsible-gaming h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.responsible-gaming p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.rg-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.rg-item {
    text-align: center;
}

.rg-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(233, 30, 140, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    display: none;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* News Page Styles */
.news-hero {
    padding: 2rem 0;
    background: var(--darker-bg);
}

.promo-banner {
    background: var(--gradient-main);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.promo-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.promo-banner p {
    font-size: 1.2rem;
    font-weight: 600;
}

.featured-story {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.story-card-large {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    transition: all 0.3s ease;
}

.story-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.story-image {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 1;
}

.story-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.story-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.story-content {
    padding: 2rem;
}

.story-category {
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 0.9rem;
}

.story-content h3 {
    font-size: 2rem;
    margin: 1rem 0;
}

.story-excerpt {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.social-follow {
    padding: 2rem 0;
    background: var(--gradient-main);
    text-align: center;
}

.social-follow h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-large:hover {
    background: white;
    transform: scale(1.1);
}

.news-grid-section {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.news-sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.news-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news-tab {
    background: var(--card-bg);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
}

.news-tab.active,
.news-tab:hover {
    background: var(--primary-magenta);
}

.news-articles {
    display: grid;
    gap: 2rem;
}

.news-article {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.news-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.3);
}

.article-image {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1rem 1rem 1rem 1rem;
}

.article-date {
    color: var(--primary-magenta);
    font-weight: 600;
    font-size: 0.85rem;
}

.article-content h4 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.article-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.read-more {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.read-more:hover {
    text-decoration: underline;
}

.btn-load-more {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    display: block;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.5);
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
}

.sidebar-widget h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-magenta);
}

.live-updates {
    list-style: none;
}

.live-updates li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator {
    color: #FF0000;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.trending-list {
    list-style: none;
}

.trending-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.popular-post:hover {
    transform: translateX(5px);
}

.post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
}

.post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.category-section {
    padding: 2rem 0;
    background: var(--darker-bg);
}

.category-section:nth-child(even) {
    background: var(--dark-bg);
}

.category-cards {
    display: grid;
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.category-image {
    height: 250px;
}

.category-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.8rem;
}

.category-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-gray);
}

.category-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(233, 30, 140, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-content,
    .coverage-split,
    .news-sidebar-layout,
    .guide-card.featured,
    .story-card-large {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .bonus-amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .bonus-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-grid,
    .games-grid,
    .guides-grid,
    .video-grid,
    .markets-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-login,
    .btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .news-article {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 200px;
    }

    .news-sidebar {
        grid-column: 1;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .bonus-amount {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}