/* Teenpatti Casino - Premium Gaming Style */
/* Optimized for performance and accessibility */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent click flashing */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
p, h1, h2, h3, h4, h5, h6, span, div {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #ffd93d;
    text-decoration: none;
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.1);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.nav-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-menu a {
    color: #e8e8e8;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
    display: block;
    text-decoration: none;
    outline: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu a:focus {
    outline: 2px solid #ffd93d;
    outline-offset: 2px;
}

.nav-menu a:active {
    background: linear-gradient(135deg, #ffd93d, #6bcf7f);
    color: #1a1a1a;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd93d 0%, #6bcf7f 50%, #ff6b6b 100%);
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '→';
    margin-left: 0.75rem;
    color: #ffd93d;
    font-weight: bold;
    font-size: 1.2rem;
}

.breadcrumb-list a {
    color: #e8e8e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.breadcrumb-list a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 50%, rgba(107, 207, 127, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    color: #ffd93d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 50%, rgba(107, 207, 127, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 217, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 207, 127, 0.1) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #e8e8e8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
}

.feature-card img {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #e8e8e8;
    line-height: 1.7;
}

/* Registration Process */
.registration-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.05) 0%, rgba(255, 217, 61, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(107, 207, 127, 0.2);
    border-bottom: 1px solid rgba(107, 207, 127, 0.2);
}

.registration-process h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3rem;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.process-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(107, 207, 127, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.process-text h3 {
    color: #6bcf7f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.process-text p {
    color: #e8e8e8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.process-text h3 {
    color: #ffd93d;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-left: 4px solid #ff6b6b;
    padding-left: 1rem;
    width: 100%;
    text-align: center;
    border-left: none;
    border-bottom: 4px solid #ff6b6b;
    padding-left: 0;
    padding-bottom: 0.5rem;
}

.process-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(107, 207, 127, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.step-icon {
    font-size: 3rem;
    padding: 1rem;
    background: rgba(107, 207, 127, 0.2);
    border-radius: 50%;
    border: 3px solid rgba(107, 207, 127, 0.4);
    transition: all 0.3s ease;
    animation: stepGlow 2s ease-in-out infinite;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon:nth-child(1) { animation-delay: 0s; }
.step-icon:nth-child(3) { animation-delay: 1s; }
.step-icon:nth-child(5) { animation-delay: 2s; }

.step-arrow {
    font-size: 2rem;
    color: #6bcf7f;
    animation: arrowPulse 1.5s ease-in-out infinite;
    margin: 0 0.5rem;
}

.step-icon:hover {
    transform: scale(1.2);
    background: rgba(107, 207, 127, 0.4);
    box-shadow: 0 10px 25px rgba(107, 207, 127, 0.3);
}

@keyframes stepGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(107, 207, 127, 0.3); }
    50% { box-shadow: 0 0 20px rgba(107, 207, 127, 0.6); }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Inline Process Steps */
.process-steps-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.15) 0%, rgba(255, 217, 61, 0.15) 100%);
    border-radius: 25px;
    border: 3px solid rgba(107, 207, 127, 0.4);
    box-shadow: 0 12px 35px rgba(107, 207, 127, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(10px);
    align-self: center;
}

.process-steps-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-steps-inline:hover::before {
    left: 100%;
}

.process-steps-inline .step-icon {
    font-size: 2.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.3) 0%, rgba(255, 217, 61, 0.3) 100%);
    border-radius: 50%;
    border: 3px solid rgba(107, 207, 127, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: stepGlow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
    position: relative;
    z-index: 1;
}

.process-steps-inline .step-icon:nth-child(1) { animation-delay: 0s; }
.process-steps-inline .step-icon:nth-child(3) { animation-delay: 1s; }
.process-steps-inline .step-icon:nth-child(5) { animation-delay: 2s; }

.process-steps-inline .step-arrow {
    font-size: 2rem;
    color: #ffd93d;
    animation: arrowPulse 1.5s ease-in-out infinite;
    margin: 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.process-steps-inline .step-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.4) 0%, rgba(255, 217, 61, 0.4) 100%);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
    border-color: rgba(255, 107, 107, 0.6);
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 217, 61, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3rem;
}

.advantages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.advantages-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.advantages-text h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.advantages-text p {
    color: #e8e8e8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.security-badge {
    font-size: 4rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: badgeShine 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 120px;
}

.security-badge:nth-child(2) { animation-delay: 1s; }
.security-badge:nth-child(3) { animation-delay: 2s; }

.security-badge:hover {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 107, 107, 0.2);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    animation: none;
}

@keyframes badgeShine {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
        transform: scale(1.05);
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3rem;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.faq-item h3 {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: #1a1a1a;
    padding: 2rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.faq-item h3::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;
}

.faq-item h3:hover::before {
    left: 100%;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #ffd93d, #6bcf7f);
    transform: scale(1.02);
}

.faq-item p {
    padding: 2rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 50%, rgba(107, 207, 127, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 217, 61, 0.15) 0%, transparent 50%);
    animation: ctaFloat 10s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.cta h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: #e8e8e8;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 3rem 0;
}

.about-content .content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Policy Content */
.policy-content,
.terms-content,
.disclaimer-content {
    padding: 3rem 0;
}

.policy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.policy-content h3,
.terms-content h3,
.disclaimer-content h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul,
.terms-content ul,
.disclaimer-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li,
.terms-content li,
.disclaimer-content li {
    margin-bottom: 0.5rem;
}

/* Support Content */
.support-content {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-method {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.support-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
}

.support-method h3 {
    color: #ffd93d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-method p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-contact {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.support-contact p {
    color: #e8e8e8;
    margin-bottom: 0.5rem;
}

.support-contact strong {
    color: #ffd93d;
}

.support-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.topic-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(107, 207, 127, 0.2);
    box-shadow: 0 8px 25px rgba(107, 207, 127, 0.1);
    transition: all 0.3s ease;
}

.topic-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 207, 127, 0.2);
    border-color: rgba(107, 207, 127, 0.4);
}

.topic-category h3 {
    color: #6bcf7f;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-left: 4px solid #6bcf7f;
    padding-left: 1rem;
}

.topic-category ul {
    list-style: none;
    margin: 0;
}

.topic-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(107, 207, 127, 0.2);
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.topic-category li:hover {
    color: #6bcf7f;
    padding-left: 0.5rem;
}

.topic-category li:last-child {
    border-bottom: none;
}

.support-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 217, 61, 0.2) 100%);
    backdrop-filter: blur(20px);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.support-cta h3 {
    color: #ffd93d;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.support-cta p {
    color: #e8e8e8;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Error Page */
.error-page {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.error-page h1 {
    color: #e74c3c;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.error-actions {
    margin: 2rem 0;
}

.helpful-links {
    margin: 3rem 0;
    text-align: left;
}

.helpful-links h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.link-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
}

.link-list li {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.link-list a {
    color: #e74c3c;
    font-weight: 500;
}

.search-suggestion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.search-suggestion h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.search-suggestion ul {
    margin-left: 2rem;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #e8e8e8;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 217, 61, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #e8e8e8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #e8e8e8;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    border-radius: 5px;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
    text-decoration: none;
    transform: translateX(5px);
    background: rgba(255, 107, 107, 0.1);
    padding-left: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #e8e8e8;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #ff6b6b;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffd93d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 20px;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .process-content,
    .advantages-content,
    .about-content .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-topics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-steps-inline {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
    }
    
    .process-steps-inline .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .cta-actions,
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        padding: 1.25rem 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .process-text,
    .advantages-text {
        padding: 2rem;
    }
    
    .faq-item h3 {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
    
    .faq-item p {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features,
    .registration-process,
    .advantages,
    .faq,
    .cta {
        padding: 4rem 0;
    }
    
    .feature-card,
    .support-method,
    .topic-category,
    .process-text,
    .advantages-text {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border-color: #000;
    }
    
    .btn-outline {
        background: #fff;
        color: #000;
        border-color: #000;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-actions,
    .cta-actions,
    .hero-actions {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
