/* Yono Games Login - Casino Game Website Styles */
:root {
    --primary-yellow: #FFE135;
    --secondary-yellow: #FFF176;
    --accent-yellow: #FFEB3B;
    --white: #FFFFFF;
    --dark-text: #2C3E50;
    --light-text: #34495E;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #FFE135 0%, #FFFFFF 50%, #FFE135 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--gradient);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 225, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 235, 59, 0.2) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-yellow);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px var(--shadow);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: var(--primary-yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 225, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-yellow);
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin: 0.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-text);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--white);
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Registration Steps */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    border-top: 4px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--primary-yellow);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .registration-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-yellow: #FFD700;
        --dark-text: #000000;
        --white: #FFFFFF;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 225, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-yellow);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error page styles */
.error-page {
    text-align: center;
    padding: 4rem 2rem;
}

.error-code {
    font-size: 8rem;
    color: var(--primary-yellow);
    font-weight: bold;
    text-shadow: 2px 2px 4px var(--shadow);
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 225, 53, 0.3);
}

/* Contact form styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 4px solid var(--primary-yellow);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 2rem 0;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-yellow);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 225, 53, 0.3);
}

.contact-form input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

/* FAQ section styles */
.faq-section {
    margin: 2rem 0;
}

.faq-section h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-section h3:hover {
    color: var(--accent-yellow);
}

.faq-section p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-yellow);
}

/* Error page specific styles */
.error-actions {
    margin: 2rem 0;
    text-align: center;
}

.helpful-links,
.search-suggestion,
.contact-support {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px var(--shadow);
}

.helpful-links ul,
.search-suggestion ul {
    list-style: none;
    padding: 0;
}

.helpful-links li,
.search-suggestion li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.helpful-links li:hover,
.search-suggestion li:hover {
    background: var(--primary-yellow);
}

.helpful-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
}

.helpful-links a:hover {
    color: var(--white);
}


/* Image Gallery Styles */
.image-gallery-section {
    margin: 3rem 0;
    padding: 0 2rem;
}

.image-gallery-section h2 {
    text-align: center;
    color: var(--primary-yellow);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-icon {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-icon::before {
    opacity: 0.2;
}

.icon-symbol {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.casino-icon .icon-symbol { animation-delay: 0s; }
.security-icon .icon-symbol { animation-delay: 0.5s; }
.mobile-icon .icon-symbol { animation-delay: 1s; }
.bonus-icon .icon-symbol { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.icon-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
}

.icon-description {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.4;
    z-index: 1;
    position: relative;
}

/* Icon-specific colors */
.casino-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.security-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EDDD6 100%);
}

.mobile-icon {
    background: linear-gradient(135deg, #45B7D1 0%, #6BC5D8 100%);
}

.bonus-icon {
    background: linear-gradient(135deg, #96CEB4 0%, #A8D5BA 100%);
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .image-gallery-section {
        padding: 0 1rem;
    }
    
    .image-gallery-section h2 {
        font-size: 2rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-icon {
        height: 200px;
        padding: 1.5rem;
    }
    
    .icon-symbol {
        font-size: 3rem;
    }
    
    .icon-title {
        font-size: 1.1rem;
    }
    
    .icon-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-icon {
        height: 180px;
        padding: 1rem;
    }
    
    .icon-symbol {
        font-size: 2.5rem;
    }
    
    .icon-title {
        font-size: 1rem;
    }
    
    .icon-description {
        font-size: 0.75rem;
    }
}

/* Gallery Loading Animation */
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-yellow { color: var(--primary-yellow); }
.bg-white { background: var(--white); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.p-2 { padding: 2rem; }
