/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
    background-size: 400% 400%;
    animation: carnivalGradient 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes carnivalGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 3px solid #ff6b6b;
    animation: headerPulse 3s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { border-bottom-color: #ff6b6b; }
    25% { border-bottom-color: #feca57; }
    50% { border-bottom-color: #48dbfb; }
    75% { border-bottom-color: #ff9ff3; }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ff6b6b;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: logoSpin 4s ease-in-out infinite;
}

@keyframes logoSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(2deg); }
}

.logo .accent {
    color: #feca57;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo i {
    color: #ff9ff3;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.tagline {
    font-size: 0.8rem;
    color: #48dbfb;
    margin-top: 2px;
    letter-spacing: 0.5px;
    font-weight: 600;
    animation: taglineBounce 3s ease-in-out infinite;
}

@keyframes taglineBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #48dbfb, #ff9ff3);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carnival" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/><polygon points="10,2 12,8 18,8 13,12 15,18 10,14 5,18 7,12 2,8 8,8" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23carnival)"/></svg>');
    animation: carnivalFloat 20s linear infinite;
}

@keyframes carnivalFloat {
    0% { transform: translateX(-20px) translateY(-20px); }
    100% { transform: translateX(20px) translateY(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: heroTitle 3s ease-in-out infinite;
}

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

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 1s; }
.badge:nth-child(3) { animation-delay: 2s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

/* Casino Section */
.casinos-section {
    padding: 50px 0 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: titleRainbow 5s ease-in-out infinite;
}

@keyframes titleRainbow {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 600;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
}

/* Casino Card Styles */
.casino-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.casino-card:hover::before {
    opacity: 0.1;
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.casino-card:nth-child(odd) {
    animation-delay: 0s;
}

.casino-card:nth-child(even) {
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.rank-1 { border-color: #ffd700; }
.rank-2 { border-color: #c0c0c0; }
.rank-3 { border-color: #cd7f32; }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rank-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 10px;
    border-radius: 15px;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.rank-crown, .rank-icon {
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #ff6b6b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #feca57;
    box-shadow: 0 6px 20px rgba(254, 202, 87, 0.4);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.casino-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    font-weight: 400;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.3px;
    text-align: center;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: starsGlow 3s ease-in-out infinite;
}

@keyframes starsGlow {
    0%, 100% { text-shadow: 0 0 5px #feca57; }
    50% { text-shadow: 0 0 15px #feca57, 0 0 25px #feca57; }
}

.rating-text {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.bonus-highlight {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: bonusShine 3s ease-in-out infinite;
}

@keyframes bonusShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-badge {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bonus-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    font-size: 0.85rem;
    color: #4a5568;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    border-left-color: #feca57;
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: white;
}

.payment-methods {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 10px;
}

.payment-card {
    width: 32px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

.play-button {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6); }
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #48dbfb, #ff9ff3);
    transition: left 0.3s ease;
    z-index: -1;
}

.play-button:hover::before {
    left: 0;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
}

.play-button.primary {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    animation: primaryGlow 3s ease-in-out infinite;
}

@keyframes primaryGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8); }
}

.terms {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
    margin-top: 10px;
}

.terms span {
    font-size: 0.7rem;
    color: #718096;
    line-height: 1.3;
}

/* Guide Section */
.guide-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-intro {
    margin-bottom: 40px;
}

.guide-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.guide-intro h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 30px 0 15px;
    color: #ff6b6b;
    text-align: center;
}

.steps-container h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #ff6b6b;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 3px solid #ff6b6b;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-card:hover::before {
    opacity: 0.05;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    border-color: #feca57;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: stepIconSpin 4s ease-in-out infinite;
}

@keyframes stepIconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.step-card h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2d3748;
}

.step-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
    background-size: 400% 400%;
    animation: carnivalGradient 15s ease infinite;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 107, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #ff6b6b;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-card.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerStars" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 17,11 23,11 18,15 20,21 15,17 10,21 12,15 7,11 13,11" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerStars)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    font-weight: 400;
}

.footer-logo i {
    color: #feca57;
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.footer-logo .accent {
    color: #feca57;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #feca57;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #ff6b6b;
}

.footer-column p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
    }
    
    .casino-name {
        font-size: 1.4rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 15px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 20px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #ff9ff3 75%, #54a0ff 100%);
    background-size: 400% 400%;
    animation: carnivalGradient 15s ease infinite;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.legal-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.5px;
}

.legal-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
    color: #ff6b6b;
    border-bottom: 2px solid #feca57;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #48dbfb;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
    font-size: 0.95rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
    font-size: 0.95rem;
}

.legal-content strong {
    color: #2d3748;
    font-weight: 600;
}

.return-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-return {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-return:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
} 