* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(90deg, #FF1B1B 0%, #E50914 25%, #FF6347 50%, #E50914 75%, #FF1B1B 100%);
    background-size: 200% 100%;
    animation: moveGradientHorizontal 8s ease-in-out infinite;
    color: white;
    padding: 0;
    box-shadow: 0 4px 6px rgba(255, 27, 27, 0.2);
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 20px;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-logo {
    /* margin-bottom: 30px; */
    display: flex;
    justify-content: center;
}

.logo-img {
   height: 45px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 25px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-info {
    font-size: 1rem;
    font-weight: 400;
    margin: 8px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-subtitle .icon, .hero-info .icon {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
}

/* MATCHES SECTION */
.matches {
    padding: 60px 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.matches h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.matches h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF1B1B, #E50914);
    border-radius: 2px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

@media(max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

/* PREMIUM MATCH CARD */
.match-card-premium {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.match-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 27, 27, 0.2);
}

/* Match Header with Gradient */
.match-header {
    background: linear-gradient(135deg, #2c3e7f 0%, #34495e 100%);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.match-info-left {
    display: flex;
    gap: 20px;
}

.match-date, .match-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.match-date .icon, .match-time .icon {
    font-size: 1.2rem;
}

.match-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Hurry Banner */
.hurry-banner {
    background: linear-gradient(90deg, #FF4500 0%, #FF6347 100%);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

/* Teams Section */
.teams-section {
    padding: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF1B1B 0%, #E50914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(255, 27, 27, 0.2);
    transition: all 0.3s ease;
}

.team-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-logo-img-large {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.match-card-premium:hover .team-logo {
    transform: scale(1.1);
}

.team-name {
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    color: #333;
    line-height: 1.3;
}

.vs {
    color: #999;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 10px;
}

/* Venue */
.venue {
    /* padding: 0 25px; */
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    /* border-top: 1px solid #f0f0f0; */
    /* padding-top: 15px; */
    justify-content: center;
}

.venue-icon {
    font-size: 1.1rem;
}

/* Demand Section */
.demand-section {
    padding: 0 25px 20px;
}

.demand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hoticon {
    color: #FF6347;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.seats-left {
    color: #c33;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #FF1B1B 0%, #E50914 100%);
    border-radius: 10px;
    animation: fillProgress 2s ease-in-out;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: 85%;
    }
}

@keyframes moveGradientHorizontal {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Book Tickets Button */
.book-tickets-link {
    display: block;
    padding: 0 25px 25px;
    text-decoration: none;
}

.book-tickets-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF3333 0%, #FF1B1B 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 27, 27, 0.3);
    letter-spacing: 0.5px;
}

.book-tickets-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 27, 27, 0.5);
}

.book-tickets-btn:active {
    transform: scale(0.98);
}

/* BUTTONS */
button {
    background: linear-gradient(135deg, #FF3333 0%, #FF1B1B 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 27, 27, 0.3);
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 27, 27, 0.5);
}

button:active {
    transform: scale(0.98);
}

a {
    text-decoration: none;
    color: inherit;
}

.match-card button {
    width: 100%;
    margin-top: 15px;
}
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.left, .right {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left h2, .right h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 3px solid #FF1B1B;
    padding-bottom: 12px;
}

/* TICKET STYLING */
.ticket {
    background: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FF1B1B;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ticket:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 27, 27, 0.25);
    background: linear-gradient(135deg, #FF1B1B 0%, #E50914 100%);
    color: white;
    border-left-color: #fff;
}

.ticket:hover button {
    background: white;
    color: #FF1B1B;
    box-shadow: 0 4px 12px rgba(255, 27, 27, 0.4);
}

.ticket h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.ticket p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.ticket button {
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, #FF3333 0%, #FF1B1B 100%);
    color: white;
}

.ticket button:hover {
    background: white;
    color: #FF1B1B;
    box-shadow: 0 4px 12px rgba(255, 27, 27, 0.4);
}

/* BOOKING SUMMARY */
.right p {
    font-size: 1rem;
    margin-bottom: 12px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
}

#ticketType, #price {
    font-weight: 600;
    color: #FF1B1B;
    padding: 15px;
    background: #f8f9fa;
}

.right button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
}

/* CHECKOUT PAGE */
body > h2 {
    text-align: center;
    margin: 40px 20px 20px;
    font-size: 2rem;
    color: #333;
}

body > p {
    text-align: center;
    padding: 10px 20px;
    font-size: 1rem;
}

/* QR CODE STYLING */
body > img {
    display: block;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #FF1B1B;
}

/* PAYMENT BUTTON WRAPPER */
body > a {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

body > a > button {
    padding: 15px 50px;
    font-size: 1.1rem;
}

/* FOOTER */
.modern-footer {
    background: #0f1419;
    color: #e0e0e0;
    padding: 50px 20px 0;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    gap: 12px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.social-icon:hover {
    background: #FF1B1B;
    border-color: #FF1B1B;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: #FF1B1B;
    transform: translateX(5px);
}

.footer-subscribe {
    gap: 12px;
}

.subscribe-desc {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.subscribe-form {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 10px 12px;
    font-size: 0.9rem;
    outline: none;
}

.subscribe-input::placeholder {
    color: #808080;
}

.subscribe-btn {
    background: #FF1B1B;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0;
}

.subscribe-btn:hover {
    background: #E50914;
    transform: scale(1.05);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #808080;
}

/* RESPONSIVE FOOTER */
@media(max-width: 1024px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media(max-width: 768px) {
    .modern-footer {
        padding: 40px 15px 0;
        margin-top: 60px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 30px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
}

@media(max-width: 480px) {
    .modern-footer {
        padding: 30px 12px 0;
        margin-top: 40px;
    }
    
    .footer-wrapper {
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .footer-logo {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links li a {
        font-size: 0.8rem;
    }
    
    .subscribe-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .subscribe-input {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .subscribe-btn {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin: 4px 0;
    }
}

/* RESPONSIVE DESIGN */
@media(max-width: 1024px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle, .hero-info {
        font-size: 1rem;
    }
    
    .matches h2 {
        font-size: 2rem;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .match-card-premium {
        max-width: 100%;
    }
}

@media(max-width: 768px) {
    .hero {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .hero-overlay {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle, .hero-info {
        font-size: 0.9rem;
    }
    
    .matches {
        padding: 40px 15px;
    }
    
    .matches h2 {
        font-size: 1.5rem;
    }
    
    .card-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .match-card-premium {
        border-radius: 12px;
    }
    
    .match-header {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        padding: 12px;
        justify-content: space-between;
    }

    .match-info-left {
        width: auto;
        gap: 10px;
        font-size: 0.8rem;
    }

    .match-date, .match-time {
        font-size: 0.8rem;
        gap: 5px;
    }

    .match-date i, .match-time i {
        font-size: 0.9rem;
    }
    
    .match-badge {
        margin-top: 0;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .hurry-banner {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .teams-section {
        padding: 15px;
        gap: 8px;
    }

    .team {
        gap: 8px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .team-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .vs {
        font-size: 0.9rem;
        margin: 0 5px;
    }
    
    .venue {
        padding: 8px 15px;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .venue-icon {
        font-size: 0.9rem;
    }
    
    .demand-section {
        padding: 0 15px 15px;
    }

    .demand-header {
        margin-bottom: 8px;
        gap: 10px;
    }

    .hoticon {
        font-size: 0.75rem;
    }

    .seats-left {
        font-size: 0.75rem;
    }

    .progress-bar {
        height: 6px;
    }

    .book-tickets-btn {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .left, .right {
        padding: 20px;
    }
    
    button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .left h2, .right h2 {
        font-size: 1.3rem;
    }
}

@media(max-width: 480px) {
    .hero {
        min-height: 300px;
    }
    
    .hero-overlay {
        padding: 20px 12px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle, .hero-info {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
        margin-bottom: 12px;
    }
    
    .matches h2 {
        font-size: 1.2rem;
    }
    
    .card-container {
        gap: 10px;
    }
    
    .match-card {
        padding: 15px;
    }
    
    .container {
        padding: 15px 10px;
    }
    
    body > h2 {
        font-size: 1.3rem;
    }
    
    body > img {
        max-width: 200px;
        margin: 20px auto;
    }
    
    .match-header {
        padding: 15px;
    }
    
    .match-date, .match-time {
        font-size: 0.85rem;
    }
    
    .teams-section {
        padding: 15px;
        gap: 10px;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    .vs {
        font-size: 1rem;
        margin: 0 5px;
    }
    
    .book-tickets-link {
        padding: 0 15px 15px;
    }
    
    .book-tickets-btn {
        font-size: 0.9rem;
        padding: 12px;
    }
}