/**
 * dairyqueensizes.click - Main Stylesheet
 * All classes use v75d- prefix for namespace isolation
 * Color palette: #8470FF | #D2B48C | #4B0082 | #F4A460 | #1B263B
 * Mobile-first design, max-width 430px
 */

:root {
    --v75d-primary: #8470FF;
    --v75d-gold: #D2B48C;
    --v75d-deep: #4B0082;
    --v75d-warm: #F4A460;
    --v75d-bg: #1B263B;
    --v75d-bg-light: #243352;
    --v75d-text: #E8E8E8;
    --v75d-text-muted: #A0AEC0;
    --v75d-accent: #8470FF;
    --v75d-border: rgba(132, 112, 255, 0.2);
    --v75d-radius: 8px;
    --v75d-radius-lg: 12px;
    --v75d-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Base Reset */
html { font-size: 62.5%; scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--v75d-bg);
    color: var(--v75d-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--v75d-primary); text-decoration: none; }
a:hover { color: var(--v75d-warm); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.v75d-container { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v75d-wrapper { width: 100%; position: relative; }

/* Header */
.v75d-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; background: var(--v75d-bg);
    border-bottom: 1px solid var(--v75d-border);
    height: 5.6rem;
}
.v75d-header-inner {
    max-width: 430px; margin: 0 auto; padding: 0 1.2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.v75d-logo { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.v75d-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.v75d-logo-text {
    font-size: 1.4rem; font-weight: 700; color: var(--v75d-gold);
    letter-spacing: 0.5px;
}
.v75d-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v75d-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.6rem 1.2rem; border-radius: var(--v75d-radius);
    font-size: 1.2rem; font-weight: 600; cursor: pointer; border: none;
    transition: all 0.25s ease; min-height: 3.6rem; min-width: 7rem;
}
.v75d-btn-register {
    background: linear-gradient(135deg, var(--v75d-primary), var(--v75d-deep));
    color: #fff;
}
.v75d-btn-register:hover { transform: scale(1.03); box-shadow: 0 0 12px rgba(132,112,255,0.4); }
.v75d-btn-login {
    background: transparent; color: var(--v75d-gold);
    border: 1px solid var(--v75d-gold);
}
.v75d-btn-login:hover { background: rgba(210,180,140,0.1); }
.v75d-btn-promo {
    background: linear-gradient(135deg, var(--v75d-warm), #e08c30);
    color: #1B263B; font-weight: 700;
}
.v75d-btn-promo:hover { transform: scale(1.03); box-shadow: 0 0 12px rgba(244,164,96,0.5); }
.v75d-menu-btn {
    background: none; border: none; color: var(--v75d-text);
    font-size: 2rem; cursor: pointer; padding: 0.4rem;
    display: flex; align-items: center; justify-content: center;
}

/* Mobile Menu */
.v75d-menu-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); z-index: 9998;
}
.v75d-overlay-active { display: block; }
.v75d-mobile-menu {
    position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
    background: var(--v75d-bg-light); z-index: 9999;
    transition: right 0.3s ease; padding: 2rem 1.6rem;
    overflow-y: auto;
}
.v75d-menu-active { right: 0; }
.v75d-mobile-menu .v75d-menu-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; color: var(--v75d-text);
    font-size: 2.2rem; cursor: pointer;
}
.v75d-mobile-menu nav { margin-top: 3rem; }
.v75d-mobile-menu nav a {
    display: block; padding: 1rem 0; color: var(--v75d-text);
    border-bottom: 1px solid var(--v75d-border); font-size: 1.4rem;
}
.v75d-mobile-menu nav a:hover { color: var(--v75d-gold); }

/* Main Content */
.v75d-main { padding-top: 5.6rem; }
@media (max-width: 768px) {
    .v75d-main { padding-bottom: 8rem; }
}

/* Carousel */
.v75d-carousel { position: relative; width: 100%; overflow: hidden; border-radius: var(--v75d-radius-lg); }
.v75d-slide {
    display: none; width: 100%; cursor: pointer;
    border-radius: var(--v75d-radius-lg); overflow: hidden;
}
.v75d-slide-active { display: block; }
.v75d-slide img { width: 100%; height: auto; min-height: 18rem; object-fit: cover; }
.v75d-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem;
}
.v75d-dot {
    width: 0.8rem; height: 0.8rem; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer; border: none;
}
.v75d-dot-active { background: var(--v75d-gold); }

/* Section Title */
.v75d-section-title {
    font-size: 1.8rem; font-weight: 700; color: var(--v75d-gold);
    margin: 2rem 0 1rem; padding-left: 0.4rem;
    border-left: 3px solid var(--v75d-primary);
}
.v75d-section-title span { color: var(--v75d-primary); }

/* Game Grid */
.v75d-game-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem; padding: 0.5rem 0;
}
.v75d-game-card {
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer; border-radius: var(--v75d-radius);
    overflow: hidden; transition: transform 0.2s;
    background: var(--v75d-bg-light); padding: 0.4rem;
}
.v75d-game-card:hover { transform: scale(1.05); }
.v75d-game-card img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: var(--v75d-radius); margin-bottom: 0.3rem;
}
.v75d-game-name {
    font-size: 1rem; color: var(--v75d-text-muted);
    text-align: center; line-height: 1.2rem;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    width: 100%; padding: 0 0.2rem;
}

/* Category Label */
.v75d-cat-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--v75d-deep), var(--v75d-primary));
    color: #fff; font-size: 1.2rem; font-weight: 600;
    margin: 1.5rem 0 0.8rem;
}

/* Content Blocks */
.v75d-content-block {
    background: var(--v75d-bg-light); border-radius: var(--v75d-radius-lg);
    padding: 1.6rem; margin: 1.2rem 0; border: 1px solid var(--v75d-border);
}
.v75d-content-block h3 {
    font-size: 1.5rem; color: var(--v75d-gold); margin-bottom: 0.8rem;
}
.v75d-content-block p {
    font-size: 1.3rem; line-height: 1.6rem; color: var(--v75d-text);
    margin-bottom: 0.6rem;
}
.v75d-content-block ul { padding-left: 1.4rem; margin: 0.6rem 0; }
.v75d-content-block li {
    font-size: 1.3rem; line-height: 1.5rem; color: var(--v75d-text-muted);
    margin-bottom: 0.4rem;
}

/* Promo Link Style */
.v75d-promo-link {
    display: inline-block; color: var(--v75d-warm);
    font-weight: 700; cursor: pointer; text-decoration: underline;
    transition: color 0.2s;
}
.v75d-promo-link:hover { color: var(--v75d-gold); }

/* Bottom Navigation */
.v75d-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1000; height: 6rem;
    background: linear-gradient(180deg, var(--v75d-bg-light), var(--v75d-bg));
    border-top: 1px solid var(--v75d-border);
    display: flex; justify-content: space-around; align-items: center;
    padding: 0 0.4rem;
}
.v75d-bottom-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 5.6rem; min-height: 5.6rem; background: none; border: none;
    color: var(--v75d-text-muted); cursor: pointer; transition: all 0.25s;
    border-radius: var(--v75d-radius); padding: 0.3rem;
}
.v75d-bottom-btn i, .v75d-bottom-btn .material-icons,
.v75d-bottom-btn ion-icon { font-size: 2.2rem; margin-bottom: 0.2rem; }
.v75d-bottom-btn span { font-size: 1rem; line-height: 1.2rem; }
.v75d-bottom-btn:hover { color: var(--v75d-gold); }
.v75d-bottom-btn:active { transform: scale(0.92); }
.v75d-bottom-active { color: var(--v75d-primary); }
.v75d-bottom-active i, .v75d-bottom-active .material-icons,
.v75d-bottom-active ion-icon { color: var(--v75d-primary); }

/* Footer */
.v75d-footer {
    background: var(--v75d-bg-light); border-top: 1px solid var(--v75d-border);
    padding: 2rem 1.2rem; margin-top: 2rem;
}
.v75d-footer-inner { max-width: 430px; margin: 0 auto; }
.v75d-footer-desc {
    font-size: 1.2rem; color: var(--v75d-text-muted); line-height: 1.5rem;
    margin-bottom: 1.2rem;
}
.v75d-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.v75d-footer-links a {
    padding: 0.5rem 1rem; border-radius: var(--v75d-radius);
    background: rgba(132,112,255,0.1); color: var(--v75d-primary);
    font-size: 1.1rem; border: 1px solid var(--v75d-border);
    transition: all 0.2s;
}
.v75d-footer-links a:hover { background: var(--v75d-primary); color: #fff; }
.v75d-copyright {
    text-align: center; font-size: 1.1rem; color: var(--v75d-text-muted);
    padding-top: 1rem; border-top: 1px solid var(--v75d-border);
}

/* Promo CTA Section */
.v75d-cta {
    text-align: center; padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--v75d-deep), var(--v75d-primary));
    border-radius: var(--v75d-radius-lg); margin: 1.5rem 0;
}
.v75d-cta h3 { color: var(--v75d-gold); font-size: 1.6rem; margin-bottom: 0.6rem; }
.v75d-cta p { color: var(--v75d-text); font-size: 1.2rem; margin-bottom: 1rem; }

/* Winner Showcase */
.v75d-winner-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem; background: var(--v75d-bg);
    border-radius: var(--v75d-radius); margin-bottom: 0.6rem;
    border: 1px solid var(--v75d-border);
}
.v75d-winner-avatar {
    width: 3.2rem; height: 3.2rem; border-radius: 50%;
    background: var(--v75d-primary); display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 1.4rem; font-weight: 700;
}
.v75d-winner-info { flex: 1; }
.v75d-winner-name { font-size: 1.2rem; color: var(--v75d-text); font-weight: 600; }
.v75d-winner-game { font-size: 1rem; color: var(--v75d-text-muted); }
.v75d-winner-amount { font-size: 1.3rem; color: var(--v75d-warm); font-weight: 700; }

/* Payment Icons */
.v75d-payment-grid {
    display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.v75d-payment-item {
    padding: 0.6rem 1rem; background: var(--v75d-bg);
    border-radius: var(--v75d-radius); font-size: 1.1rem;
    color: var(--v75d-text-muted); border: 1px solid var(--v75d-border);
}

/* Testimonials */
.v75d-testimonial {
    background: var(--v75d-bg); border-radius: var(--v75d-radius-lg);
    padding: 1.2rem; margin-bottom: 0.8rem; border: 1px solid var(--v75d-border);
}
.v75d-testimonial-text { font-size: 1.2rem; color: var(--v75d-text); font-style: italic; margin-bottom: 0.6rem; }
.v75d-testimonial-author { font-size: 1.1rem; color: var(--v75d-warm); font-weight: 600; }

/* App Download CTA */
.v75d-app-cta {
    display: flex; align-items: center; gap: 1rem;
    background: linear-gradient(135deg, var(--v75d-bg-light), #2a3f6a);
    border-radius: var(--v75d-radius-lg); padding: 1.2rem; margin: 1rem 0;
    border: 1px solid var(--v75d-border);
}
.v75d-app-icon { font-size: 3rem; color: var(--v75d-primary); }
.v75d-app-info h4 { font-size: 1.3rem; color: var(--v75d-gold); }
.v75d-app-info p { font-size: 1.1rem; color: var(--v75d-text-muted); }

/* Category Highlight */
.v75d-cat-highlight {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem; background: var(--v75d-bg);
    border-radius: var(--v75d-radius); margin-bottom: 0.6rem;
    border-left: 3px solid var(--v75d-primary);
}
.v75d-cat-highlight-icon { font-size: 2.4rem; color: var(--v75d-gold); }
.v75d-cat-highlight h4 { font-size: 1.3rem; color: var(--v75d-text); }
.v75d-cat-highlight p { font-size: 1.1rem; color: var(--v75d-text-muted); }

/* Desktop adjustments */
@media (min-width: 769px) {
    .v75d-bottom-nav { display: none; }
    .v75d-header { background: var(--v75d-bg-light); }
}

/* Utility */
.v75d-text-center { text-align: center; }
.v75d-mt-1 { margin-top: 1rem; }
.v75d-mb-1 { margin-bottom: 1rem; }
.v75d-hidden { display: none; }
