/* ------------------------------
   GLOBAL RESET & BASE STYLING
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
    animation: fadeIn 1.4s ease-in-out forwards;
}

/* Smooth fade-in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ----------------------------------------
   LUXURY BACKGROUND (MOVING GRADIENT)
-----------------------------------------*/
.hero-section {
    position: relative;
    width: 100%;
    height: 88vh;
    background: linear-gradient(125deg, #111, #1b1b1b, #161616, #0d0d0d);
    background-size: 400% 400%;
    animation: gradientMove 14s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----------------------------------------
   HERO CONTENT
-----------------------------------------*/
.hero-content {
    text-align: center;
    max-width: 780px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.85;
    margin-top: 10px;
}

/* Hero Button */
.hero-btn {
    margin-top: 25px;
    padding: 15px 32px;
    background: #e60012;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ff1a28;
    transform: translateY(-3px);
}

/* ----------------------------------------
   IMAGE SECTIONS (SEALION 7 / WINNERS)
-----------------------------------------*/
.image-section {
    width: 100%;
    margin-top: 0;
}

.image-section img {
    width: 100%;
    border-radius: 3px;
    margin-bottom: -4px;
    display: block;
}

/* ----------------------------------------
   TICKET TIER SECTION
-----------------------------------------*/
.tier-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 40px;
    background: #f9f9f9;
    color: #000;
    flex-wrap: wrap;
}

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-8px);
    border-color: #e60012;
}

.tier-title {
    font-size: 24px;
    font-weight: 700;
}

.tier-price {
    font-size: 32px;
    color: #e60012;
    font-weight: 800;
    margin: 8px 0 15px;
}

.tier-list {
    list-style: none;
    padding: 0;
}

.tier-list li {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.buy-btn {
    margin-top: 15px;
    padding: 14px 30px;
    background: #e60012;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.buy-btn:hover {
    background: #ff1a28;
}

/* ----------------------------------------
   FOOTER
-----------------------------------------*/
.footer {
    padding: 35px 0;
    background: #000;
    text-align: center;
    color: #aaa;
    margin-top: 50px;
    font-size: 15px;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

/* ----------------------------------------
   RESPONSIVE BREAKPOINTS
-----------------------------------------*/

@media (max-width: 880px) {
    .hero-content h1 { font-size: 32px; }
    .tier-wrapper { flex-direction: column; align-items: center; }
    .tier-card { width: 90%; }
}
