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

:root {
    --primary-color: #F70776;
    --secondary-color: #C3195D;
    --accent-color: #680747;
    --dark-color: #141010;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #333333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-login {
    background: var(--primary-color);
    color: var(--white);
    margin-right: 10px;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(247, 7, 118, 0.1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 300% 300%;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out, textShine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #FFE5F1; /* Light pink color */
    animation: slideInLeft 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-image {
    animation: slideInRight 1s ease-out 0.3s both;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: calc(var(--border-radius) + 10px);
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 2s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-image:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* Floating Particles */
.hero-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
}

.hero-section .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero-section .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-section .particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.hero-section .particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 9s;
}

.hero-section .particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 1s;
    animation-duration: 11s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Glowing orbs */
.hero-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-section .glow-orb:nth-child(1) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-section .glow-orb:nth-child(2) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Features Section */
.features-section {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Login & Register Sections */
.login-section,
.register-section {
    background: var(--white);
}

.login-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.register-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.login-steps,
.register-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    margin-bottom: 0;
    color: #333333;
    line-height: 1.6;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.login-cta,
.register-cta {
    margin-top: 2rem;
}

.register-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.register-images img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 100%;
    height: auto;
}

.register-images img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Page Main Content - Account for Fixed Header */
.page-main-content {
    margin-top: 80px; /* Account for fixed header */
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color)) !important;
    background-size: 300% 300% !important;
    color: var(--white) !important;
    padding: 120px 0 80px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    animation: gradientShift 8s ease-in-out infinite !important;
}

.page-header::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="header-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: slideInUp 1s ease-out, textShine 3s ease-in-out infinite !important;
}

.page-header p {
    font-size: 1.3rem !important;
    opacity: 0.9 !important;
    position: relative !important;
    z-index: 2 !important;
    animation: slideInUp 1s ease-out 0.3s both !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    color: #FFE5F1 !important;
}

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

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::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="about-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23F70776" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.5;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-content p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-content p:nth-child(3) {
    animation-delay: 0.4s;
}

.about-content .btn {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.about-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

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

/* 404 Error Page */
.error-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.error-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 50s linear infinite;
    pointer-events: none;
}

.error-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.error-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.error-section h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.error-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.error-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: slideInUp 1s ease-out 0.3s both;
}

.error-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.error-section .error-description {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.error-section .error-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.error-section .error-description:hover::before {
    transform: translateX(100%);
}

.error-section .error-description p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.error-section .error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.error-section .btn {
    padding: 12px 24px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 150px;
}

.error-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.error-section .btn:hover::before {
    left: 100%;
}

.error-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 7, 118, 0.3);
}

.error-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.error-section .floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.error-section .floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.error-section .floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.error-section .floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.error-section .floating-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* FAQ Page */
.faq-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.faq-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 45s linear infinite;
    pointer-events: none;
}

.faq-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.faq-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.faq-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.faq-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 15px;
}

.faq-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.faq-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.faq-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.faq-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.faq-section .highlight-box {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.faq-section .highlight-box:hover::before {
    transform: translateX(100%);
}

.faq-section .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.faq-section .question-box {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-left: 4px solid #0dcaf0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section .question-box::before {
    content: '❓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.faq-section .question-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.faq-section .answer-box {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-left: 4px solid #198754;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section .answer-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.faq-section .answer-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.faq-section .tip-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section .tip-box::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.faq-section .tip-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

/* Contact Page */
.contact-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.contact-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    pointer-events: none;
}

.contact-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.contact-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.contact-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 15px;
}

.contact-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.contact-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.contact-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.contact-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.contact-section .highlight-box {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-section .highlight-box:hover::before {
    transform: translateX(100%);
}

.contact-section .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.contact-section .info-box {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-left: 4px solid #0dcaf0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section .info-box::before {
    content: 'ℹ️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.contact-section .info-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.contact-section .support-box {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-left: 4px solid #198754;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section .support-box::before {
    content: '🛟';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.contact-section .support-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

/* Disclaimer Page */
.disclaimer-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.disclaimer-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 35s linear infinite;
    pointer-events: none;
}

.disclaimer-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.disclaimer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.disclaimer-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.disclaimer-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.disclaimer-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 15px;
}

.disclaimer-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.disclaimer-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.disclaimer-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.disclaimer-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.disclaimer-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.disclaimer-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.disclaimer-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.disclaimer-section .highlight-box {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.disclaimer-section .highlight-box:hover::before {
    transform: translateX(100%);
}

.disclaimer-section .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.disclaimer-section .warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section .warning-box::before {
    content: '⚠️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.disclaimer-section .warning-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.disclaimer-section .important-box {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section .important-box::before {
    content: '❗';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.disclaimer-section .important-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

/* Terms & Conditions Page */
.terms-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.terms-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.terms-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.terms-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.terms-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 15px;
}

.terms-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.terms-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.terms-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.terms-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.terms-section .highlight-box {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.terms-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.terms-section .highlight-box:hover::before {
    transform: translateX(100%);
}

.terms-section .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

.terms-section .warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.terms-section .warning-box::before {
    content: '⚠️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.terms-section .warning-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

/* Privacy Policy Page */
.privacy-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.02) 0%, rgba(195, 25, 93, 0.02) 100%);
}

.privacy-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.privacy-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.privacy-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 15px;
}

.privacy-section p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.privacy-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.privacy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.privacy-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.privacy-section .highlight-box {
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.privacy-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.privacy-section .highlight-box:hover::before {
    transform: translateX(100%);
}

.privacy-section .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-color);
}

/* About Story Section */
.about-story {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.03) 0%, rgba(195, 25, 93, 0.03) 100%);
}

.about-story::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 7, 118, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.story-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    padding-left: 20px;
}

.story-content p::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.story-content p:nth-child(2) {
    animation-delay: 0.2s;
}

.story-content p:nth-child(3) {
    animation-delay: 0.4s;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.05) 0%, rgba(195, 25, 93, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(247, 7, 118, 0.2);
}

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

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.game-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.game-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.game-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.game-card .btn {
    width: 100%;
    padding: 12px 24px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.game-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 7, 118, 0.3);
}

/* Game Categories Section */
.game-categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.game-categories::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="game-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23F70776" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23game-pattern)"/></svg>');
    opacity: 0.3;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 7, 118, 0.1) 0%, rgba(195, 25, 93, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(247, 7, 118, 0.15);
}

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

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.category-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.category-card .btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.category-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 7, 118, 0.3);
}

/* Benefits Section */
.benefits-section {
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1rem;
    color: #333333;
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Games Slider Section Styles */
.games-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.games-slider-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.emoji {
    font-size: 2rem;
}

.language-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.mobile-slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.mobile-slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.7) rotateY(-15deg) translateZ(-100px);
    z-index: 1;
}

.mobile-slide:nth-child(1) {
    transform: scale(0.6) rotateY(-25deg) translateX(-200px) translateZ(-200px);
    z-index: 1;
}

.mobile-slide:nth-child(2) {
    transform: scale(0.7) rotateY(-15deg) translateX(-100px) translateZ(-100px);
    z-index: 2;
}

.mobile-slide:nth-child(3) {
    transform: scale(0.8) rotateY(-5deg) translateX(-50px) translateZ(-50px);
    z-index: 3;
}

.mobile-slide:nth-child(4) {
    transform: scale(0.9) rotateY(0deg) translateX(0px) translateZ(0px);
    z-index: 4;
}

.mobile-slide:nth-child(5) {
    transform: scale(0.8) rotateY(5deg) translateX(50px) translateZ(-50px);
    z-index: 3;
}

.mobile-slide:nth-child(6) {
    transform: scale(0.7) rotateY(15deg) translateX(100px) translateZ(-100px);
    z-index: 2;
}

.mobile-slide:nth-child(7) {
    transform: scale(0.6) rotateY(25deg) translateX(200px) translateZ(-200px);
    z-index: 1;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg) translateX(0px) translateZ(0px) !important;
    z-index: 10;
}

.mobile-screen {
    position: relative;
    width: 280px;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
}

.mobile-slide.active .mobile-screen {
    width: 320px;
    height: 570px;
    border-radius: 30px;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 15px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.game-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.game-name {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-width: 100px;
}

.thumbnail-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.thumbnail-item.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-5px);
}

.thumbnail-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.thumbnail-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-slogan {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.slider-slogan p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(247, 7, 118, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 7, 118, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}