@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');

* {
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0b0b;
    color: white;
    overflow-x: hidden;
}

/* 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;
}

/* 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);
}

/* HERO */
hero {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

hero > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

hero > button {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 32px;
    background: #F100F7;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: clamp(18px, 2.5vw, 32px);
    cursor: pointer;
    font-family: 'Protest Strike', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    text-align: center;
    line-height: 1;
}

hero > button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(241, 0, 247, 0.5);
    background: #d200d8;
}

/* SECONDARY INFO SECTION */
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;
}

/* ARENA CARDS */
div.arena-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    div.arena-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

div.arena-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    word-wrap: break-word;
    text-align: center;
    border: 4px solid black;
    border-radius: 25px;
    padding: 25px 20px;
    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;
    justify-content: flex-start;
    min-height: 550px;
    height: 100%;
}

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

div.arena-card > img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    flex-shrink: 0;
}

div.arena-card > h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 900;
    line-height: 1.3;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* FULL TEXT FIX */
div.arena-card > p {
    margin-top: 15px;
    color: #FFA200;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    padding: 5px;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: break-word !important;
    display: block !important;
    max-width: 100% !important;
}

div.arena-card > button {
    width: 85%;
    margin-top: 15px;
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 600;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: center;
    flex-shrink: 0;
}

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

/* ARENA COLOR VARIANTS */
div.blue-arena-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-arena-card > h3 { color: #00E5FF; text-shadow: 0 0 15px #00E5FF; }
div.blue-arena-card > button { background-color: #00E5FF; }

div.black-arena-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-arena-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-arena-card > button { background-color: #333; color: #fff; }
div.black-arena-card .tier-features li { color: #FFA200; }
div.black-arena-card .tier-tagline { color: #FFD700; }

div.red-arena-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-arena-card > h3 { color: red; text-shadow: 0 0 15px red; }
div.red-arena-card > button { background-color: red; }

div.golden-arena-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-arena-card > h3 { color: #FFA200; text-shadow: 0 0 15px #FFA200; }
div.golden-arena-card > button { background-color: #FFA200; }

/* REASONS */
div.reason-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

div.reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid black;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    min-height: 180px;
    gap: 15px;
}

div.reason-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.6);
}

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

div.reason-card > p {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* COLOR VARIANTS */
div.purple-reason-card { background-color: rgba(255, 162, 0, 0.2); box-shadow: 0px 0px 18px rgba(255, 0, 246, 0.5); border-color: #FF00F6; }
div.purple-reason-card > p { color: #FF00F6; }

div.green-reason-card { background-color: rgba(255, 162, 0, 0.2); box-shadow: 0px 0px 18px rgba(30, 255, 0, 0.5); border-color: #1EFF00; }
div.green-reason-card > p { color: #1EFF00; }

div.blurple-reason-card { background-color: rgba(255, 162, 0, 0.2); box-shadow: 0px 0px 18px rgba(0, 170, 255, 0.5); border-color: #00AAFF; }
div.blurple-reason-card > p { color: #00AAFF; }

div.golden-reason-card { background-color: rgba(255, 162, 0, 0.2); box-shadow: 0px 0px 18px rgba(255, 162, 0, 0.5); border-color: #FFA200; }
div.golden-reason-card > p { color: #FFA200; }

/* FAQ - UPDATED DESIGN */
.faqs {
    margin: 0 auto;
    padding: 3% 5%;
    max-width: 1000px;
}

.questions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.questions > details {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 18px rgba(255, 162, 0, 0.4);
}

.questions > details:hover {
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.6);
}

.questions > details[open] {
    background: rgba(255, 162, 0, 0.1);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.7);
}

.questions summary {
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    color: #FFA200;
    text-shadow: 0 0 10px #FFA200;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questions summary::marker {
    content: '';
}

.questions summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #FFA200;
    transition: transform 0.3s ease;
}

.questions details[open] summary::after {
    transform: rotate(45deg);
}

.questions p {
    margin-top: 15px;
    color: white;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.6;
}

.questions ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 25px;
    color: white;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.8;
}

.questions ul li {
    margin-bottom: 8px;
    color: #FFA200;
}

.questions ul li::marker {
    color: #FFA200;
}

/* TIER CONTENT STYLING */
.tier-content {
    width: 100%;
    margin-top: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
    flex-grow: 1;
}

.tier-features li {
    color: #FFA200;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    margin-bottom: 4px;
}

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

.tier-tagline {
    color: #FFD700;
    font-style: italic;
    font-size: clamp(13px, 1.1vw, 16px);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    line-height: 1.4;
    padding: 0 5px;
}

/* INFO MODAL */
.info-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.info-modal-content {
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.95), rgba(0, 0, 0, 0.98));
    border: 3px solid #FFA200;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 162, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.info-modal-content h2 {
    color: #FFA200;
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 20px;
    text-align: center;
}

.info-modal-content p {
    color: white;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.8;
    margin: 15px 0;
    text-align: center;
}

.info-icon {
    font-size: 60px;
    text-align: center;
    margin: 20px 0;
}

.info-link {
    color: #FFA200;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #FFA200;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.info-link:hover {
    color: #FFD700;
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.info-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #FFA200;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.info-modal-close:hover {
    color: #FFD700;
    transform: rotate(90deg);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    hero > button {
        top: 75%;
        padding: 10px 20px;
    }

    div.arena-card {
        min-height: 500px;
        padding: 20px 15px;
    }

    div.arena-card > img {
        width: 100px;
    }

    div.arena-card > h3 {
        font-size: clamp(16px, 2vw, 20px);
    }

    .tier-features li {
        font-size: clamp(12px, 1vw, 14px);
        padding: 5px 0;
        padding-left: 20px;
    }

    .tier-tagline {
        font-size: clamp(12px, 1vw, 14px);
    }

    div.reason-cards {
        grid-template-columns: 1fr;
    }

    div.reason-card {
        min-height: 160px;
        padding: 20px 15px;
        gap: 12px;
    }

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

    div.reason-card > p {
        font-size: 16px;
    }

    .questions summary {
        font-size: 1.2rem;
    }

    .questions p {
        font-size: 1rem;
    }

    .info-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .info-modal-content h2 {
        font-size: 24px;
    }

    .info-modal-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    hero > button {
        font-size: 18px;
        top: 80%;
    }

    div.reason-card > img {
        width: 60px;
    }

    div.reason-card > p {
        font-size: 14px;
    }
}
