@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prosto+One&family=Protest+Strike&display=swap');

/* MAIN ARENA SECTION */
section.main-arena {
    background-image: url('/static/images/tr-blue-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 3vw 5vw;
}

section.main-arena > h2 {
    font-family: 'Protest Strike', sans-serif;
    color: #FFA200;
    filter: drop-shadow(0 0 6px #FFA200);
    font-size: clamp(36px, 5vw, 72px);
    margin-bottom: 1vw;
}

section.main-arena > p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 3vw;
}

/* ARENA CARDS */
div.arena-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    justify-items: center;
    margin-bottom: 3vw;
}

div.arena-cards > div.each-card {
    border: 3px solid #FF00F6;
    border-radius: 25px;
    background-color: rgba(255, 0, 246, 0.15);
    padding: 2vw; /* general padding for the whole card */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 0, 246, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

div.arena-cards > div.each-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 0, 246, 0.8), 0 0 35px rgba(0, 229, 255, 0.5);
}

/* CARD HEADINGS */
div.arena-cards > div.each-card > h4 {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    color: #00E5FF;
    filter: drop-shadow(0 0 3px #00E5FF);
    margin: 0;   /* remove any top/bottom margin */
    padding: 0;  /* remove padding that adds space */
}

div.arena-cards > div.each-card > h3 {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(60px, 6vw, 80px);
    color: #FFA200;
    filter: drop-shadow(0 0 3px #FFA200);
    margin: 0;   /* remove any top/bottom margin */
    padding: 0;  /* remove padding */
}

div.arena-cards > div.each-card > p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    color: white;
    line-height: 1.6;
    margin: 1.5vw 0 2vw 0; /* small margin for spacing below h3 */
}

div.arena-cards > div.each-card > button {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: white;
    padding: 14px 30px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #1803FF, #0E0299);
    box-shadow: 0 0 8px #00E5FF, 0 0 14px #1803FF;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

div.arena-cards > div.each-card > button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 14px #00E5FF, 0 0 28px #FF00F6, 0 0 40px #FFA200;
}

/* LAST HEADLINE */
section.main-arena > h2:last-of-type {
    font-size: clamp(28px, 4vw, 48px);
    margin-top: 3vw;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    div.arena-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        margin: 0 5vw;
    }
}

@media (max-width: 768px) {
    div.arena-cards {
        grid-template-columns: 1fr;
        gap: 4vw;
        margin: 0 3vw;
    }

    section.main-arena > h2 {
        font-size: clamp(28px, 6vw, 48px);
    }

    section.main-arena > p {
        font-size: clamp(16px, 3vw, 22px);
    }

    div.arena-cards > div.each-card > h4 {
        font-size: clamp(36px, 8vw, 54px);
        margin: 0;
        padding: 0;
    }

    div.arena-cards > div.each-card > h3 {
        font-size: clamp(50px, 10vw, 70px);
        filter: drop-shadow(0 0 2px #FFA200);
        margin: 0;
        padding: 0;
    }

    div.arena-cards > div.each-card > p {
        margin: 1.2vw 0 2vw 0;
    }

    div.arena-cards > div.each-card > button {
        font-size: clamp(18px, 4vw, 24px);
        padding: 12px 25px;
    }
}

/* TIER SECTION STYLING - 1 COLUMN 4 ROWS HORIZONTAL */
section.secondary-info {
    position: relative;
    background-image: url("/static/images/tr-blue-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 5% 5%;
    text-align: center;
}

/* H2 HEADINGS - GOLDEN & BIGGER */
h2 {
    color: #FFA200;
    font-family: 'Protest Strike', sans-serif;
    filter: drop-shadow(0 0 8px #FFA200);
    font-size: clamp(36px, 6vw, 72px);
    margin: 3% 0;
    text-align: center;
}

/* Ensure mm-h2 class matches other h2 elements */
h2.mm-h2 {
    color: #FFA200 !important;
    font-family: 'Protest Strike', sans-serif !important;
    filter: drop-shadow(0 0 8px #FFA200) !important;
    font-size: clamp(36px, 6vw, 72px) !important;
    margin: 6% 0 !important;
    text-align: center !important;
}

/* BEAUTIFUL H3 - GOLDEN & BIGGER */
h3 {
    font-family: 'Protest Strike', sans-serif;
    text-shadow: 0px 0px 14px rgba(255, 215, 0, 0.8);
    color: #FFA200;
    font-size: clamp(28px, 4vw, 48px);
    transition: all 0.3s ease;
}

h3:hover {
    color: #FFD700;
    text-shadow: 0px 0px 22px #FFD700, 0px 0px 40px #FFA200;
    transform: scale(1.1);
}

/* TIER CARDS - 1 COLUMN 4 ROWS HORIZONTAL */
div.tier-cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

div.tier-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    word-wrap: break-word;
    text-align: left;
    border: 4px solid black;
    border-radius: 25px;
    padding: 20px 25px;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 18px rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    gap: 20px;
    min-height: 140px;
    justify-content: space-between;
}

div.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 28px rgba(255, 255, 255, 0.8);
}

div.tier-card > img {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

div.tier-card > h3 {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 900;
    flex-shrink: 0;
    width: 180px;
    text-align: left;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

/* TIER CONTENT STYLING */
div.tier-card .tier-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 15px;
    min-width: 0;
}

div.tier-card .tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

div.tier-card .tier-features li {
    color: #FFA200;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
    margin-bottom: 2px;
}

div.tier-card .tier-features li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #FFA200;
    font-weight: bold;
    font-size: 1.1em;
}

div.tier-card .tier-tagline {
    color: #FFD700;
    font-style: italic;
    font-size: clamp(12px, 1vw, 14px);
    margin-top: 8px;
    text-align: left;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    line-height: 1.4;
}

div.tier-card > button {
    width: auto;
    min-width: 140px;
    margin: 0;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
}

div.tier-card > button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.5);
}

/* TIER COLOR VARIANTS */
div.blue-tier-card { background-color: rgba(0, 229, 255, 0.15); box-shadow: 0px 0px 18px rgba(0, 229, 255, 0.5); border-color: #00E5FF; }
div.blue-tier-card > h3 { color: #00E5FF; text-shadow: 0 0 15px #00E5FF; }
div.blue-tier-card > button { background-color: #00E5FF; }

div.black-tier-card { background-color: rgba(0, 0, 0, 0.4); box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.6); border-color: #333; }
div.black-tier-card > h3 { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5); }
div.black-tier-card > button { background-color: #333; color: #fff; }
div.black-tier-card .tier-features li { color: #FFA200; }
div.black-tier-card .tier-tagline { color: #FFD700; }

div.red-tier-card { background-color: rgba(255, 0, 0, 0.15); box-shadow: 0px 0px 18px rgba(255, 0, 0, 0.5); border-color: red; }
div.red-tier-card > h3 { color: red; text-shadow: 0 0 15px red; }
div.red-tier-card > button { background-color: red; }

div.golden-tier-card { background-color: rgba(255, 162, 0, 0.15); box-shadow: 0px 0px 18px rgba(255, 162, 0, 0.5); border-color: #FFA200; }
div.golden-tier-card > h3 { color: #FFA200; text-shadow: 0 0 15px #FFA200; }
div.golden-tier-card > button { background-color: #FFA200; }

/* RESPONSIVE TWEAKS FOR TIER CARDS */
@media (max-width: 768px) {
    div.tier-cards {
        gap: 20px;
        margin: 0 3vw;
    }

    div.tier-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        min-height: auto;
    }

    div.tier-card > img {
        width: 70px;
    }

    div.tier-card > h3 {
        width: 100%;
        text-align: center;
        font-size: clamp(16px, 4vw, 22px);
        margin-bottom: 10px;
    }

    div.tier-card .tier-content {
        margin: 0;
        width: 100%;
    }

    div.tier-card .tier-features li {
        font-size: clamp(11px, 2vw, 13px);
    }

    div.tier-card .tier-tagline {
        font-size: clamp(11px, 2vw, 13px);
        text-align: center;
    }

    div.tier-card > button {
        width: 100%;
        min-width: auto;
    }

    div.tier-card > button {
        width: auto;
        min-width: 150px;
        font-size: clamp(12px, 2vw, 16px);
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    div.tier-card > img {
        width: 60px;
    }

    div.tier-card > h3 {
        font-size: clamp(18px, 5vw, 24px);
    }

    div.tier-card > p {
        font-size: clamp(11px, 2.5vw, 14px);
    }

    div.tier-card > button {
        width: auto;
        min-width: 120px;
        font-size: clamp(11px, 2.5vw, 14px);
        padding: 8px 12px;
    }
}