/* Aurora Fun Styles - Aurora Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navigation {
    position: fixed;
    top: 15px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(20, 30, 48, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(64, 224, 208, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(64, 224, 208, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navigation:hover {
    background: rgba(20, 30, 48, 0.9);
    border-color: rgba(64, 224, 208, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(64, 224, 208, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #40e0d0;
    font-size: 1.5rem;
    font-weight: bold;
}

.site-branding img {
    width: 40px;
    height: 40px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-menu a {
    color: #e1e8f4;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu a:hover,
.main-menu a.active {
    color: #40e0d0;
    background: rgba(64, 224, 208, 0.1);
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #40e0d0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-zone {
    position: relative;
    padding: 140px 0 100px;
    margin-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #0a0a2e 100%);
}

/* Aurora Background Animation */
.aurora-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0.7;
}

.aurora-light-1 {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #40e0d0, #00bcd4);
    top: 20%;
    left: 10%;
    animation-name: aurora-float-1;
    animation-delay: 0s;
}

.aurora-light-2 {
    width: 400px;
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    top: 60%;
    right: 15%;
    animation-name: aurora-float-2;
    animation-delay: 2s;
}

.aurora-light-3 {
    width: 250px;
    height: 180px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    bottom: 30%;
    left: 60%;
    animation-name: aurora-float-3;
    animation-delay: 4s;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #40e0d0, transparent),
        radial-gradient(2px 2px at 40px 70px, #667eea, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #40e0d0, transparent),
        radial-gradient(2px 2px at 160px 30px, #f093fb, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes aurora-float-1 {
    0%, 100% { transform: translateX(-20px) translateY(-10px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateX(20px) translateY(10px) rotate(180deg); opacity: 0.9; }
}

@keyframes aurora-float-2 {
    0%, 100% { transform: translateX(15px) translateY(20px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateX(-25px) translateY(-15px) rotate(-180deg); opacity: 0.8; }
}

@keyframes aurora-float-3 {
    0%, 100% { transform: translateX(-10px) translateY(-15px) rotate(0deg); opacity: 0.5; }
    50% { transform: translateX(30px) translateY(25px) rotate(90deg); opacity: 0.7; }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: icon-float 2s ease-in-out infinite;
}

.badge-text {
    color: #40e0d0;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(64, 224, 208, 0.2); }
    50% { box-shadow: 0 0 30px rgba(64, 224, 208, 0.4); }
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    color: #e1e8f4;
    font-size: 0.6em;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.title-line-2 {
    background: linear-gradient(45deg, #40e0d0, #00bcd4, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(64, 224, 208, 0.5);
    animation: title-glow 4s ease-in-out infinite;
}

.title-accent {
    font-size: 0.5em;
    color: #f093fb;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

@keyframes title-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(64, 224, 208, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.6)); }
}

.hero-description {
    font-size: 1.3rem;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(45deg, #40e0d0, #00bcd4);
    color: #fff;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(64, 224, 208, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #40e0d0;
    border: 2px solid rgba(64, 224, 208, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #40e0d0;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #8892a0;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(64, 224, 208, 0.5), transparent);
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.2);
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.card-1 {
    top: 10%;
    left: 0%;
    animation-name: float-1;
    animation-delay: 0s;
}

.card-2 {
    top: 5%;
    right: 0%;
    animation-name: float-2;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-name: float-3;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.card-title {
    font-size: 0.9rem;
    color: #40e0d0;
    font-weight: 600;
}

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

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

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.orb-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(64, 224, 208, 0.2), rgba(102, 126, 234, 0.2));
    border: 2px solid rgba(64, 224, 208, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: orb-rotate 10s linear infinite;
}

.orb-pulse {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px solid rgba(64, 224, 208, 0.3);
    animation: pulse-expand 3s ease-in-out infinite;
}

.orb-logo {
    font-size: 3rem;
    font-weight: 800;
    color: #40e0d0;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

@keyframes orb-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-expand {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Buttons */
.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.primary-btn {
    background: linear-gradient(45deg, #40e0d0, #667eea);
    color: #fff;
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #40e0d0;
    border: 2px solid #40e0d0;
}

.secondary-btn:hover {
    background: #40e0d0;
    color: #fff;
    transform: translateY(-2px);
}

/* Warning/Disclaimer Section */
.warning-zone {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    overflow: hidden;
}

.disclaimer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.warning-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.warning-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border-radius: 50%;
    opacity: 0.6;
    animation: warning-float 10s ease-in-out infinite;
}

.wp-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.wp-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.wp-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.wp-4 {
    top: 40%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 11s;
}

@keyframes warning-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.3);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(-20px) scale(1.2);
        opacity: 0.7;
    }
}

.warning-panel {
    background: rgba(30, 30, 50, 0.6);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 25px;
    padding: 60px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 193, 7, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.warning-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
    animation: pulse 6s ease-in-out infinite;
}

.warning-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.warning-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    animation: icon-pulse-animation 3s ease-in-out infinite;
}

@keyframes icon-pulse-animation {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.warning-symbol {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.6));
    animation: icon-bounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.warning-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-main {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffc107, #ff9800, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.title-sub {
    font-size: 1.2rem;
    color: #b8c5d6;
    font-weight: 500;
    font-style: italic;
}

.warning-content {
    position: relative;
    z-index: 2;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.notice-item:hover {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.4));
}

.notice-text h3 {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 8px;
    font-weight: 700;
}

.notice-text p {
    font-size: 0.95rem;
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

.warning-message {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-message p {
    font-size: 1.1rem;
    color: #e1e8f4;
    line-height: 1.8;
    margin-bottom: 15px;
}

.warning-message p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: #ffc107;
    font-weight: 600;
    font-size: 1.15rem !important;
}

.warning-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.disclaimer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.disclaimer-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-style {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.primary-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.secondary-style {
    background: rgba(255, 255, 255, 0.08);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.secondary-style:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.btn-icon {
    font-size: 1.3rem;
    z-index: 2;
}

.btn-text {
    z-index: 2;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.disclaimer-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Entertainment/Game Section */
.entertainment-zone, .play-area {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin-top: 100px;
}

.entertainment-zone h2, .play-area h1, .play-area h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #40e0d0;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.play-description {
    text-align: center;
    font-size: 1.2rem;
    color: #e1e8f4;
    margin-bottom: 40px;
}

.entertainment-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
}

.entertainment-frame iframe {
    width: 100%;
    height: 506px; /* 16:9 aspect ratio for 900px width */
    border: none;
    display: block;
    aspect-ratio: 16/9;
}

/* About Section */
.about-zone {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #16213e 50%, #1a2332 75%, #0f1419 100%);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #40e0d0, #00bcd4);
    border-radius: 50%;
    opacity: 0.7;
    animation: particle-float 8s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle-3 {
    bottom: 40%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle-5 {
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle-6 {
    top: 20%;
    left: 70%;
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) translateX(-15px) scale(1.1);
        opacity: 0.8;
    }
}

.aurora-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    border-radius: 50%;
    animation: wave-flow 12s ease-in-out infinite;
}

.wave-1 {
    top: 20%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    left: -50%;
    animation-delay: 4s;
}

.wave-3 {
    top: 80%;
    left: -50%;
    animation-delay: 8s;
}

@keyframes wave-flow {
    0% {
        transform: translateX(-100px) rotate(-5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
        transform: translateX(50px) rotate(0deg);
    }
    100% {
        transform: translateX(200px) rotate(5deg);
        opacity: 0;
    }
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    animation: section-badge-glow 4s ease-in-out infinite;
}

@keyframes section-badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(64, 224, 208, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(64, 224, 208, 0.4);
    }
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-highlight {
    font-size: 0.5em;
    color: #b8c5d6;
    font-weight: 500;
}

.title-main {
    background: linear-gradient(45deg, #40e0d0, #00bcd4, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(45deg);
    }
}

.about-subtitle {
    font-size: 1.3rem;
    color: #8892a0;
    font-style: italic;
}

.about-structure {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 20px;
    padding: 30px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40e0d0, transparent);
    transition: left 0.8s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: rgba(64, 224, 208, 0.4);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.15);
}

.main-card {
    border-color: rgba(64, 224, 208, 0.3);
    background: rgba(64, 224, 208, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(64, 224, 208, 0.5));
}

.card-header h3 {
    font-size: 1.4rem;
    color: #40e0d0;
    font-weight: 700;
    margin: 0;
}

.content-card p {
    color: #b8c5d6;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-card {
    padding: 25px;
}

.feature-card .card-header h3 {
    font-size: 1.2rem;
}

.feature-card .card-icon {
    font-size: 1.5rem;
}

/* About Visual Section */
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.visual-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.orb-layers {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.orb-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: orb-spin 15s linear infinite;
}

.layer-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: rgba(64, 224, 208, 0.4);
    animation-direction: normal;
}

.layer-2 {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: rgba(102, 126, 234, 0.4);
    animation-direction: reverse;
    animation-duration: 20s;
}

.layer-3 {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border-color: rgba(240, 147, 251, 0.4);
    animation-duration: 25s;
}

.orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(64, 224, 208, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(64, 224, 208, 0.3);
}

.center-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: #40e0d0;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
    z-index: 2;
}

.center-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.2) 0%, transparent 70%);
    animation: center-pulse 3s ease-in-out infinite;
}

@keyframes orb-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes center-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    animation: stat-float 6s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.stat-2 {
    top: 15%;
    right: 0%;
    animation-delay: 2s;
}

.stat-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #40e0d0;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #8892a0;
    margin-top: 5px;
}

@keyframes stat-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.decorative-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.2;
    animation: ring-expand 8s ease-in-out infinite;
}

.ring-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: #40e0d0;
    animation-delay: 0s;
}

.ring-2 {
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border-color: #667eea;
    animation-delay: 3s;
}

.ring-3 {
    top: 100px;
    left: 100px;
    right: 100px;
    bottom: 100px;
    border-color: #f093fb;
    animation-delay: 6s;
}

@keyframes ring-expand {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* About CTA Section */
.about-cta {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 25px;
    padding: 50px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: #40e0d0;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 35px;
}

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

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #40e0d0, #00bcd4);
    color: #fff;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(64, 224, 208, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #40e0d0;
    border: 2px solid rgba(64, 224, 208, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.2);
}

/* Reviews/Feedback Section */
.feedback-zone {
    padding: 80px 0;
    background: rgba(20, 30, 48, 0.5);
}

.feedback-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #40e0d0;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.2);
}

.star-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feedback-card p {
    color: #e1e8f4;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    color: #40e0d0;
    font-weight: bold;
    font-size: 1rem;
}

/* Features/Advantages Section */
.advantages-zone {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.advantages-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #40e0d0;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(64, 224, 208, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 224, 208, 0.2);
    border-color: rgba(64, 224, 208, 0.5);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.5rem;
    color: #40e0d0;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #e1e8f4;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-area {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    margin-top: 100px;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 3rem;
    color: #40e0d0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-title p {
    font-size: 1.2rem;
    color: #e1e8f4;
}

.contact-structure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-area {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.contact-form-area h2 {
    font-size: 2rem;
    color: #40e0d0;
    margin-bottom: 30px;
}

.field-group {
    margin-bottom: 25px;
}

.field-group label {
    display: block;
    color: #e1e8f4;
    font-weight: bold;
    margin-bottom: 8px;
}

.field-group input,
.field-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #40e0d0;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-information {
    color: #e1e8f4;
}

.contact-information h2 {
    font-size: 2rem;
    color: #40e0d0;
    margin-bottom: 30px;
}

.contact-information p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.info-panel h3 {
    color: #40e0d0;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-area {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    margin-top: 100px;
}

.revision-date {
    color: #40e0d0;
    font-size: 1rem;
}

.legal-document {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.2);
    color: #e1e8f4;
    line-height: 1.8;
}

.legal-document h2 {
    color: #40e0d0;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
}

.legal-document h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
}

.legal-document p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-document ul {
    margin: 20px 0 20px 30px;
}

.legal-document li {
    margin-bottom: 10px;
}

.emphasis-box {
    background: rgba(64, 224, 208, 0.1);
    border: 2px solid #40e0d0;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.emphasis-box h2 {
    color: #40e0d0;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: rgba(20, 30, 48, 0.95);
    color: #e1e8f4;
    padding: 60px 0 20px;
    border-top: 2px solid #40e0d0;
}

.footer-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #40e0d0;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-branding img {
    width: 40px;
    height: 40px;
}

.footer-segment h3 {
    color: #40e0d0;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-segment ul li {
    margin-bottom: 10px;
}

.footer-segment ul li a {
    color: #e1e8f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-segment ul li a:hover {
    color: #40e0d0;
}

.footer-segment p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-warning {
    font-style: italic;
    color: #ffc107;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(64, 224, 208, 0.3);
    text-align: center;
    color: #a0a8b6;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #40e0d0, #667eea);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

.top-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.top-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 30, 48, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid #40e0d0;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(64, 224, 208, 0.2);
}

.modal-content h2 {
    color: #40e0d0;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.modal-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navigation {
        top: 10px;
        left: 15px;
        right: 15px;
        border-radius: 15px;
    }
    
    .nav-container {
        padding: 0 20px;
        min-height: 65px;
    }
    
    .main-menu {
        top: 90px;
        left: 15px;
        right: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 110px;
        left: 20px;
        right: 20px;
        background: rgba(20, 30, 48, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(64, 224, 208, 0.3);
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s ease;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-wrapper,
    .about-structure,
    .contact-structure {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-zone {
        margin-top: 90px;
        padding: 120px 0 80px;
    }

    .about-structure {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: -1;
        min-height: 400px;
    }

    .showcase-orb {
        width: 200px;
        height: 200px;
    }

    .orb-center {
        width: 100px;
        height: 100px;
    }

    .center-icon {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .decorative-rings {
        width: 300px;
        height: 300px;
    }

    .cta-content {
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .warning-zone {
        padding: 80px 0;
    }

    .warning-panel {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .warning-icon-container {
        width: 80px;
        height: 80px;
    }

    .warning-symbol {
        font-size: 3rem;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .title-sub {
        font-size: 1rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .warning-message {
        padding: 25px;
    }

    .warning-message p {
        font-size: 1rem;
    }

    .warning-actions {
        flex-direction: column;
        gap: 15px;
    }

    .disclaimer-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-visual {
        height: 300px;
        margin-top: 40px;
    }

    .floating-card {
        padding: 15px;
    }

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

    .card-title {
        font-size: 0.8rem;
    }

    .hero-orb {
        width: 150px;
        height: 150px;
    }

    .orb-logo {
        font-size: 2rem;
    }

    .aurora-light {
        filter: blur(30px);
    }

    .aurora-light-1 {
        width: 200px;
        height: 150px;
    }

    .aurora-light-2 {
        width: 250px;
        height: 180px;
    }

    .aurora-light-3 {
        width: 180px;
        height: 120px;
    }

    .advantages-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .entertainment-frame iframe {
        height: 253px; /* Maintain 16:9 ratio for smaller screens */
    }

    .legal-document {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .navigation {
        top: 8px;
        left: 10px;
        right: 10px;
        border-radius: 12px;
    }
    
    .nav-container {
        padding: 0 15px;
        min-height: 60px;
    }
    
    .main-menu {
        top: 80px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .hero-zone {
        margin-top: 80px;
        padding: 100px 0 60px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .title-highlight {
        font-size: 0.6em;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .content-card {
        padding: 20px;
    }

    .main-card {
        padding: 25px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .showcase-orb {
        width: 150px;
        height: 150px;
    }

    .orb-center {
        width: 80px;
        height: 80px;
    }

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

    .stat-bubble {
        padding: 12px 16px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cta-content {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .warning-panel {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .warning-icon-container {
        width: 70px;
        height: 70px;
    }

    .warning-symbol {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 1.8rem;
    }

    .title-sub {
        font-size: 0.9rem;
    }

    .notice-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .notice-icon {
        font-size: 2rem;
    }

    .notice-text h3 {
        font-size: 1.1rem;
    }

    .notice-text p {
        font-size: 0.9rem;
    }

    .warning-message {
        padding: 20px;
    }

    .warning-message p {
        font-size: 0.95rem;
    }

    .highlight-text {
        font-size: 1rem !important;
    }

    .disclaimer-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

    .btn-arrow {
        font-size: 1.1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .decorative-rings {
        width: 250px;
        height: 250px;
    }

    .floating-particles {
        opacity: 0.5;
    }

    .particle {
        width: 3px;
        height: 3px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .top-button {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }

    .entertainment-frame {
        margin: 0 -15px; /* Full width on very small screens */
        border-radius: 8px;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}