/* ============================================
   RỒNG THẦN ONLINE — PREMIUM GAME THEME
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --bg-primary: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #22223a;
    --bg-input: #16162b;
    --color-primary: #ff6a00;
    --color-primary-glow: rgba(255, 106, 0, 0.4);
    --color-secondary: #ffb300;
    --color-accent: #e74c3c;
    --color-success: #22c55e;
    --color-purple: #9b59b6;
    --color-text: #e8e6e3;
    --color-text-muted: #8a8a9a;
    --color-border: #2a2a3d;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-glow: 0 0 30px rgba(255, 106, 0, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 179, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: var(--bg-primary); }
body::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }

/* === STARS BACKGROUND === */
.stars-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--dur) ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-dragon {
    font-size: 64px;
    animation: dragonPulse 1.5s ease-in-out infinite;
}

.loading-text {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 16px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--color-primary-glow);
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: var(--color-border);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
}

.loading-bar-inner {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
    animation: loadingSlide 1.2s ease-in-out infinite;
}

@keyframes dragonPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.15) rotate(0deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

@keyframes loadingSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* === HEADER === */
.rto-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 0 16px;
}

.header-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 12px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 15px var(--color-primary-glow);
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.header-nav::-webkit-scrollbar { display: none; }

.header-nav a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-primary);
    background: rgba(255, 106, 0, 0.1);
}

.header-user-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.header-user-btn:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

/* === MAIN WRAPPER === */
.rto-wrap {
    margin-top: 68px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    position: relative;
    z-index: 1;
}

/* === HERO BANNER === */
.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.hero-banner img {
    width: 100%;
    display: block;
    max-height: 220px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(15, 15, 26, 0.95));
    padding: 30px 20px 16px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 25px var(--color-primary-glow), 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), #ff4757);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 25px rgba(231, 76, 60, 0.7); }
}

.hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.hero-cta .btn-login {
    background: linear-gradient(135deg, var(--color-primary), #ff8c00);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hero-cta .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    color: #fff;
}

.hero-cta .btn-register {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.hero-cta .btn-register:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.hero-profile-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #ff8c00);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    margin-top: 12px;
}

.hero-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    color: #fff;
}

/* === NAVIGATION BUTTONS === */
.rto-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 4px 0 16px;
}

.nav-btn {
    flex: 1;
    min-width: 90px;
    max-width: 140px;
    text-align: center;
    padding: 10px 8px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 12px;
    color: #fff !important;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--radius-md);
}

.nav-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.nav-btn-home {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
}
.nav-btn-home:hover { box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5); }

.nav-btn-zalo {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 3px 12px rgba(155, 89, 182, 0.3);
}
.nav-btn-zalo:hover { box-shadow: 0 6px 20px rgba(155, 89, 182, 0.5); }

.nav-btn-download {
    background: linear-gradient(135deg, #ff6a00, #e65c00);
    box-shadow: 0 3px 12px rgba(255, 106, 0, 0.3);
}
.nav-btn-download:hover { box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5); }

.nav-btn-event {
    background: linear-gradient(135deg, #f39c12, #d68910);
    box-shadow: 0 3px 12px rgba(243, 156, 18, 0.3);
    color: #000 !important;
}
.nav-btn-event:hover { box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5); }

.nav-btn-recharge {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    box-shadow: 0 3px 12px rgba(39, 174, 96, 0.3);
}
.nav-btn-recharge:hover { box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5); }

.nav-btn-top {
    background: linear-gradient(135deg, #c0392b, #96281b);
    box-shadow: 0 3px 12px rgba(192, 57, 43, 0.3);
}
.nav-btn-top:hover { box-shadow: 0 6px 20px rgba(192, 57, 43, 0.5); }

.nav-btn-profile {
    background: linear-gradient(135deg, #3498db, #2471a3);
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}
.nav-btn-profile:hover { box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5); }

/* === MAIN CONTENT CARD === */
.rto-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 18px;
    position: relative;
}

.rto-card h5 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

/* === FORUM / DISCUSSION === */
.forum-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.post-form-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.post-form-title {
    color: var(--color-secondary);
    font-weight: 700;
    margin: 0 0 12px 0;
    font-size: 14px;
}

.comment-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.comment-card:hover {
    border-color: var(--color-primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.08);
    transform: translateX(4px);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.comment-card:hover .comment-avatar {
    border-color: var(--color-primary);
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.tag-pin {
    background: rgba(231, 76, 60, 0.15);
    color: var(--color-accent);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.tag-new {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.comment-title-text {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 5px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.comment-author {
    color: var(--color-primary);
    font-weight: 600;
}

.comment-replies {
    margin-left: auto;
}

.comment-replies.has-replies {
    color: var(--color-success);
}

/* === FORM ELEMENTS === */
.form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.15);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

/* === BUTTONS === */
.btn-g {
    background: linear-gradient(135deg, var(--color-primary), #e65c00);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    text-decoration: none;
}

.btn-g:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
    color: #fff;
}

a.btn-g { color: #fff !important; }

/* === DOWNLOAD CARDS === */
.download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-card {
    flex: 1;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.download-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-primary-glow);
    border-color: var(--color-primary);
}

.download-card:hover::before {
    opacity: 1;
}

.download-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.download-platform {
    font-size: 11px;
    color: var(--color-text-muted);
    margin: 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin: 8px 0 12px;
}

.download-btn {
    display: block;
    background: linear-gradient(135deg, var(--color-primary), #e65c00);
    color: #fff !important;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
    color: #fff;
}

.recharge-price-wrap {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(18, 17, 22, 0.65));
}

.recharge-price-note {
    color: var(--color-text-muted);
    font-size: 13px;
    margin: 6px 0 12px;
}

.recharge-price-table-wrap {
    overflow-x: auto;
}

.recharge-price-table {
    min-width: 760px;
}

.price-kc {
    color: #f39c12;
    font-weight: 700;
}

.price-ruby {
    color: #ef4444;
    font-weight: 700;
}

.price-gift {
    color: #22c55e;
    font-weight: 700;
}

.recharge-price-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: linear-gradient(135deg, var(--color-primary), #e65c00);
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

th:first-child { border-radius: var(--radius-sm) 0 0 0; }
th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
}

tr:hover td {
    background: rgba(255, 106, 0, 0.03);
}

/* === MENU LINKS (sidebar) === */
.menu-link {
    display: block;
    padding: 12px 16px;
    background: var(--bg-card);
    color: #fff !important;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    font-weight: 500;
}

.menu-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
    transform: translateX(4px);
    color: #fff;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 14px;
}

.pagination .btn-g {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.pagination .btn-g.active {
    background: linear-gradient(135deg, var(--color-secondary), #e6a200);
    color: #000 !important;
}

/* === TEXT HELPERS === */
.text-danger { color: #ef4444; }
.text-ok { color: var(--color-success); }

/* === FOOTER === */
.rto-footer {
    margin-top: 30px;
    padding: 30px 20px 20px;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 800;
    text-shadow: 0 0 15px var(--color-primary-glow);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 8px;
}

/* === GLOW ANIMATION === */
.glow {
    box-shadow: 0 0 20px var(--color-primary-glow);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px var(--color-primary-glow); }
    50% { box-shadow: 0 0 30px var(--color-primary-glow), 0 0 50px rgba(255, 106, 0, 0.15); }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .header-nav { display: none; }

    .header-inner { height: 50px; }

    .header-logo-text { font-size: 12px; }

    .rto-wrap { margin-top: 58px; padding: 8px; }

    .hero-title { font-size: 16px; }

    .nav-btn {
        min-width: 75px;
        font-size: 11px;
        padding: 8px 6px;
    }

    .rto-card { padding: 14px; }

    .download-card { min-width: 140px; }

    .comment-card { padding: 10px; gap: 8px; }

    .comment-avatar { width: 36px; height: 36px; }
}

@media (max-width: 400px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn-login,
    .hero-cta .btn-register { width: 160px; text-align: center; }
}

/* === EVENT PAGE OVERRIDES === */
.event-banner {
    background: linear-gradient(135deg, #0f0a1a 0%, #1a0a2d 50%, #0f0a1a 100%);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

.section {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.section h3 {
    color: var(--color-primary);
    border-bottom-color: var(--color-border);
}

.item-row {
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.special-card {
    background: linear-gradient(135deg, var(--bg-primary), #1a0a2d);
    border-color: rgba(255, 106, 0, 0.15);
}

.craft-box {
    background: var(--bg-primary);
    border-color: rgba(255, 106, 0, 0.3);
}

.reward-item {
    background: var(--bg-primary);
}

/* === POINT TABLE === */
.point-table tr:first-child {
    background: var(--bg-primary);
}

.highlight {
    color: var(--color-primary);
}

/* === POST FORM ATTACH === */
.attach-label {
    cursor: pointer;
    background: var(--bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.attach-label:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* === MISC === */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a:not(.off):hover,
button:not(.off):hover {
    cursor: pointer;
    pointer-events: all;
}

/* === GIFTCODE PAGE === */
.giftcode-form {
    max-width: 400px;
}

.giftcode-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: var(--color-text);
}
