/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

:root {
    --primary: #1A1A2E;
    --secondary: #C9A961;
    --accent: #FFFFFF;
    --background: #F5F5F5;
    --text: #2D2D2D;
    --gold-gradient: linear-gradient(135deg, #C9A961 0%, #E6D5A8 100%);
    --dark-gradient: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero, .why-section, .stats-section, .types-section, .event-section, .cta-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(45, 45, 68, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--secondary);
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold-gradient);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--secondary);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.pulse {
    animation: pulse 2s infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== FLOATING BANNER ==================== */
.floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.95rem;
    padding: 0 15px;
    max-width: 100%;
    overflow: hidden;
}

.banner-icon {
    font-size: 1.2rem;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.highlight {
    color: #FFE66D;
    font-weight: 700;
}

/* ==================== CONSULTATION TICKER ==================== */
.consultation-ticker {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 12px 0;
    z-index: 998;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: auto;
    min-height: 40px;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 21s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    font-size: 0.95rem;
    opacity: 0.95;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-item .icon {
    margin-right: 8px;
    font-size: 1rem;
}

.ticker-item .location {
    color: var(--secondary);
    font-weight: 600;
    margin-right: 8px;
    white-space: nowrap;
}

.ticker-item .age {
    color: #A0A0A0;
    margin-right: 8px;
    white-space: nowrap;
}

.ticker-item .status {
    color: #FFE66D;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: 140px 0 80px;
    background: white;
}

.section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    line-height: 1.4;
    word-break: keep-all;
    white-space: normal;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-card:hover .card-img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.card-subtitle {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
}

.card-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ==================== TYPES SECTION ==================== */
.types-section {
    padding: 100px 0;
    background: var(--background);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.type-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.type-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.type-badge.best {
    background: var(--gold-gradient);
    color: var(--primary);
}

.type-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Sold Out Overlay */
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    border-radius: 20px;
}

.sold-out-text {
    font-size: 4rem;
    font-weight: 900;
    color: #FF4B4B;
    text-shadow: 0 4px 20px rgba(255, 75, 75, 0.5);
    font-family: 'Noto Serif KR', serif;
}

.type-card.sold-out {
    opacity: 0.85;
}

.type-card.sold-out .type-image img {
    filter: grayscale(50%);
}

/* Urgent Badge */
.urgent-badge {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #FF4B4B;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 75, 75, 0.5);
}

.urgent-badge.blink {
    animation: blinkUrgent 1.5s infinite;
}

@keyframes blinkUrgent {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.type-badge.best {
    background: var(--gold-gradient);
    color: var(--primary);
}

.type-image {
    height: 280px;
}

.type-info {
    padding: 35px;
}

.type-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.type-price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
}

.type-desc {
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.type-features {
    list-style: none;
    margin-bottom: 25px;
}

.type-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.type-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.type-card button {
    width: 100%;
}

.type-card button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #999;
}

/* ==================== QUIZ SECTION ==================== */
.quiz-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -40px;
    margin-bottom: 60px;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.quiz-progress {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    width: 33.33%;
    transition: width 0.4s ease;
}

.progress-text {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.quiz-question h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quiz-option {
    background: white;
    border: 3px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quiz-option:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.option-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.option-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.option-text small {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
}

.quiz-result {
    text-align: center;
}

.result-content h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.result-type {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.result-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-ghost {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #999;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 10px;
}

.btn-ghost:hover {
    border-color: #999;
    color: #666;
}

/* ==================== ROULETTE SECTION ==================== */
.roulette-section {
    padding: 100px 0;
    background: var(--dark-gradient);
    color: white;
    text-align: center;
}

.event-header {
    margin-bottom: 60px;
}

.event-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.event-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.roulette-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto 50px;
}

#rouletteCanvas {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.roulette-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary);
    border: 5px solid white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.roulette-button:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.1);
}

.roulette-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.roulette-arrow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid var(--secondary);
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
}

.prize-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.prize-icon {
    font-size: 1.5rem;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.cta-benefits {
    margin-bottom: 50px;
}

.benefit-item {
    font-size: 1.2rem;
    margin: 15px 0;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.phone {
    background: var(--gold-gradient);
    color: var(--primary);
}

.btn-cta.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ==================== FLOATING BAR ==================== */
.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 15px 0;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.floating-bar.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.floating-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.floating-text {
    font-size: 1rem;
}

.floating-btn {
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #999;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.privacy-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 20px;
}

.prize-modal {
    text-align: center;
    padding: 60px 40px;
}

.prize-content {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.prize-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.prize-icon-large {
    font-size: 5rem;
    margin: 20px 0;
}

.prize-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.prize-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    * {
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .floating-banner {
        padding: 10px 0;
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    .banner-content {
        font-size: 0.85rem;
        gap: 10px;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .consultation-ticker {
        top: 40px;
        padding: 10px 0;
        width: 100vw;
        left: 0;
        right: 0;
        min-height: 40px;
    }
    
    .ticker-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        padding: 0 30px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .ticker-item .location,
    .ticker-item .age,
    .ticker-item .status {
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-logo h2 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .why-grid,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .quiz-container {
        padding: 30px 20px;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
    }
    
    .floating-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .type-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    * {
        max-width: 100vw;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
        word-break: keep-all;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        padding: 0 15px !important;
    }
    
    .container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .banner-content {
        font-size: 0.75rem;
        gap: 8px;
        padding: 0 10px;
    }
    
    .quiz-question h3 {
        font-size: 1.4rem;
    }
    
    #rouletteCanvas {
        max-width: 300px;
    }
    
    .roulette-button {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }
    
    .why-grid, .types-grid {
        width: 100%;
        padding: 0 15px;
    }
    
    .type-card, .why-card {
        width: 100%;
        max-width: 100%;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
