:root {
    --primary-color: #8B0000;  /* Dark Red */
    --secondary-color: #DC143C;  /* Crimson */
    --accent-color: #FF4D4D;  /* Light Red */
    --text-color: #2c3e50;
    --light-bg: #FFF5F5;  /* Very Light Red */
    --card-shadow: 0 4px 20px rgba(139, 0, 0, 0.1);
    --h2-desktop-size: 3rem;
    --h3-desktop-size: 1.5rem;
    --footer-bg: rgb(33, 37, 41);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 30px;
    height: 30px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a{
    color: #fff;
    text-decoration: none;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 10%;
}

.hero-offers {
    box-shadow: var(--card-shadow);
    text-align: center;
    border-radius: 15px;
    padding: 1rem;
}

.hero-offers h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-offers p {
    font-size: 1.3rem;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-offers-offer {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    flex-direction: column;
    gap: 0.6rem;
}

.offer-image {
    width: 100%;
    border-radius: 10px;
    border-radius: 12px;
}

.offer-image img{
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border-radius: 12px;
}

.offer-stars {
    color: rgb(243, 156, 18);
    font-size: 1.2rem;
}

.offer-header {
    font-size: 1.75rem;
}

.offer-bns {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: rgba(220, 20, 60, 0.3) 0px 2px 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 8px 20px;
    border-radius: 25px;
    transition: transform 0.3s;
}

.offer-description {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.offer-description i {
    color: rgb(243, 156, 18);
}

.offer-btn {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 10px 30px;
    border-radius: 25px;
    transition: 0.3s;
}

.offer-btn a{
    color: white;
    text-decoration: none;
}

.horse-racing-america {
    box-shadow: var(--card-shadow);
    background: white;
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guide-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-text h1{
    font-size: 3rem;
}

.guide-text p{
    font-size: 1.1rem;
}

.guide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-image img {
    width: 100%;
    border-radius: 15px;
}

.guide {
    text-align: center;
}

.guide h2 {
    font-size: 3rem;
}

.guide-container {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.guide-element {
    padding: 1.5rem;
    text-align: left;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.guide-element-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq {
    text-align: center;
}

.faq h2 {
    font-size: var(--h2-desktop-size);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-element {
    display: flex;
    background: white;
    flex-direction: column;
    border: none;
    padding: 1.3rem 1rem;
    border-radius: 10px !important;
    box-shadow: var(--card-shadow);
    gap: 0.7rem;
}

.faq-element-quest {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-element-quest img {
    width: 20px;
    height: 20px;
}

.faq-element-quest {
    color: var(--primary-color);
}

.faq-element-answer {
    text-align: left;
}

.faq-element-answer a{
    font-size: 1.1rem;
}

.faq-button.active {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.why-choose-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-choose h2{
    font-size: var(--h2-desktop-size);
    text-align: center;
}

.why-choose-container {
    margin-top: 2rem;
}

.why-choose-element-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1.3rem;
    text-align: center;
}

.why-choose-element-header i{
    font-size: 3rem;
}

.why-choose-element p {
    font-size: 1.1rem;
    width: 80%;
}

.footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background-color: var(--footer-bg);
    padding: 2rem 0rem;
    color: white;
}

.footer-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-images img {
   height: 50px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-links a{
    color: white;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .main {
        padding: 2rem 3%;
    }

    .offers-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .horse-racing-america {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    h1, h2 {
        font-size: 2rem !important;
    }

    .guide-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-choose-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer {
        padding: 2rem 3%;
    }
}



/* Sweepstakes styles */

/* Navbar */
.navbar-sweepstakes {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.crown {
    font-size: 24px;
    margin-right: 8px;
}

.site-name {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Main Content */
.main-sweepstakes {
    background-color: #FFF5F5;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Casino Grid */
.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Casino Cards */
.casino-card {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-height: 140px;
}

.casino-card .left-section {
    flex: 1;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casino-card .right-section {
    width: 50%;
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
}

/* Card Backgrounds */
.mcluck-card .left-section {
    background: black;
    color: white;
    border-radius: 15px;
}

.realprize-card .left-section {
    background: black;
    color: white;
    border-radius: 15px;
}

.pulsz-card .left-section {
    background: linear-gradient(135deg, #EA16A6, #9E1795);
    color: white;
    border-radius: 15px;
}

.hello-millions-card .left-section {
    background:black;
    color: white;
    border-radius: 15px;
}

.realprize-card .left-section {
    background: linear-gradient(45deg, black, #072175);
}

.play-fame-card .left-section {
    background: #2A1C4D;
    color: white;
    border-radius: 15px;
}

/* Badges */
.badge {
    position: absolute;
    top: 6px;
    left: 0;
    padding: 4px 3rem 4px 1rem;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: white;
    clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0% 100%);
}

.casino-month {
    background: #dc2626;
}

.fast-withdrawals {
    background: #dc2626;
}

.trending-week {
    background: #dc2626;
}

/* Casino Info */
.casino-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.rating-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.casino-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    font-size: 16px;
    color: #fbbf24;
    margin-bottom: 4px;
}

.votes {
    font-size: 10px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.score {
    font-size: 36px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bonus Info */
.bonus-info {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.bonus-info h3 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.bonus-info span {
    margin-top: 16px;
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

@media (max-width: 768px) {
    .bonus-info span {
        margin-top: 10px;
        font-size: 7px;
    }
}

.bonus-amount {
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 750;
}

.get-bonus-btn {
    align-self: center;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), #dc2626;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.get-bonus-btn:hover {
    background: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        padding: 10px;
    }

    .badge {
        padding: 4px 25px 4px 5px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }

    .hero-section {
        margin-bottom: 20px;
    }

    .casino-card .left-section  {
        padding: 20px;
    }

    .badge {
        font-size: 10px;
    }
    
    .get-bonus-btn {
        padding: 6px 12px;
        font-size: 18px;
    }

    
    .casino-card .right-section {
        min-width: auto;
    }
    
    .casino-info {
        gap: 10px;
    }
    
    .casino-logo {
        margin-top: 5px;
        width: 150px;
    }
    
    .score {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }
}

/* Info Section */
.info-section {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Lorem Ipsum Card */
.lorem-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
}

.lorem-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.lorem-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Card */
.why-choose-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.why-choose-card h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* Play Safely Section */
.play-safely-section {
    text-align: center;
    margin-top: 60px;
}

.play-safely-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.safety-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Responsive for Info Section */
@media (max-width: 768px) {
    .info-section {
        margin-top: 40px;
        gap: 30px;
    }
    
    .lorem-card, .why-choose-card {
        padding: 30px 20px;
    }
    
    .lorem-card h2, .why-choose-card h2, .play-safely-section h2 {
        font-size: 28px;
    }
    
    .lorem-card p {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 40px;
        flex-direction: column;
    }
    
    .feature-item h3 {
        font-size: 16px;
    }
    
    .logos-container {
        gap: 20px;
    }
    
    .safety-logo {
        height: 50px;
    }

    .bonus-amount {
        font-size: 14px;
        margin-bottom: 7px;
    }
}

footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.footer-copy {
    width: 50ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-copy {
        width: unset;
    }
}

@media (max-width: 390px) {
    .casino-card {
        flex-direction: column;
    }

    .casino-card .right-section {
        width: 100%;
    }

}
/* Sweepstakes styles */