/* DpBoss 777 - Modern Gaming Platform Styles - Updated Design */
/* Cache Buster: 2025-01-15 - Enhanced Font Colors */
/* Force Update: 2025-01-15 - Support Intro Text Color Fix */
/* Response Times Layout Fix: 2025-01-15 - Force Update */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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%);
    min-height: 100vh;
}

.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, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 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;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00d4ff;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 700;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    max-width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 50%;
    padding-right: 1rem;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    border-radius: 2px;
}

/* Brand Introduction */
.brand-intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Features Grid - Creative Layout */
.features {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 200px;
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left: 4px solid #00d4ff;
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left: 4px solid #ff6b35;
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 53, 0.15) 100%);
    border-left: 4px solid #00d4ff;
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-left: 4px solid #ff6b35;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    filter: brightness(1.3) drop-shadow(0 5px 15px rgba(0, 212, 255, 0.3));
}

.feature-card:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.5) drop-shadow(0 8px 20px rgba(0, 212, 255, 0.5));
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    border-radius: 2px;
}

.feature-card:nth-child(2) h3::after,
.feature-card:nth-child(4) h3::after {
    background: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Mobile Responsive for Features */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-image {
        width: 100px;
        height: 100px;
    }
    
    .feature-card img {
        width: 80px;
        height: 80px;
    }
    
    .feature-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
}

/* Registration Process - Zigzag Progressive Boxes */
.registration-process {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.registration-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
    min-height: 200px;
}

/* Zigzag Pattern */
.step:nth-child(odd) {
    flex-direction: row;
    margin-left: 0;
    margin-right: 5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left: 4px solid #00d4ff;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 5rem;
    margin-right: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-right: 4px solid #ff6b35;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.step:nth-child(even) .step-number {
    background: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.6);
}

.step:nth-child(even):hover .step-number {
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.6);
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.step:nth-child(even) h3 {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    border-radius: 2px;
}

.step:nth-child(even) h3::after {
    background: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* Connecting Arrows */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 3;
}

.step:nth-child(odd):not(:last-child)::after {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 15px solid #00d4ff;
}

.step:nth-child(even):not(:last-child)::after {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 15px solid #ff6b35;
}

/* Mobile Responsive for Registration Process */
@media (max-width: 768px) {
    .step {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        margin: 1.5rem 0 !important;
    }
    
    .step:nth-child(odd),
    .step:nth-child(even) {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
}

.login-info {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.login-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    pointer-events: none;
}

.login-info h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.login-image {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.login-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.login-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
}

.login-image:hover img {
    filter: brightness(1.2) contrast(1.1);
}

.login-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 2rem auto 0;
}

.login-button-container {
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.btn-login-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-login-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transition: left 0.5s ease;
}

.btn-login-large:hover::before {
    left: 100%;
}

.btn-login-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-login-large:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

/* Mobile Responsive for Login Info */
@media (max-width: 768px) {
    .login-info {
        padding: 2rem;
    }
    
    .login-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .login-image {
        margin: 1.5rem 0;
    }
    
    .login-info p {
        font-size: 1rem;
        margin: 1.5rem auto 0;
    }
    
    .login-button-container {
        margin-top: 2rem;
    }
    
    .btn-login-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Advantages & Security */
.advantages-security {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-icon div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.advantage-item:hover .advantage-icon div {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(255, 107, 53, 0.3) 100%);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Individual icon styles */
.icon-licensed {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3) !important;
}

.icon-fair-gaming {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%) !important;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3) !important;
}

.icon-data-protection {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%) !important;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3) !important;
}

.icon-responsible-gaming {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%) !important;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3) !important;
}

.advantage-item:hover .icon-licensed {
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5) !important;
}

.advantage-item:hover .icon-fair-gaming {
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5) !important;
}

.advantage-item:hover .icon-data-protection {
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5) !important;
}

.advantage-item:hover .icon-responsible-gaming {
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.5) !important;
}

.advantage-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    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 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-section a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        width: 100%;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .advantage-icon div {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Accessibility Improvements */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* FAQ Section Icons */
.faq-section-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-section-icon .icon-faq {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
}

.faq-section:hover .faq-section-icon .icon-faq {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.5);
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.faq-item-icon {
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.faq-item-icon div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-password {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.icon-withdrawal {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.icon-security {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.icon-limits {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.faq-item:hover .faq-item-icon div {
    transform: scale(1.1) rotate(5deg);
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Support Topics Icons */
.support-topics-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-topics-icon .icon-topics {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5722 0%, #D84315 100%);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
}

.support-topics:hover .support-topics-icon .icon-topics {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.5);
}

.topic-category-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topic-category-icon div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-account {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.icon-payment {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.icon-technical {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.icon-gaming {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.topic-category:hover .topic-category-icon div {
    transform: scale(1.1) rotate(5deg);
}

/* 404 Page - Complete Redesign */
.error-page {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Hero Error Section */
.error-hero {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.error-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.error-icon .icon-404 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.error-message h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.error-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    justify-content: center;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transition: left 0.5s ease;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn .btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.quick-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.quick-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.quick-btn.secondary {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.quick-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.5);
}

.quick-btn.outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.quick-btn.outline:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Main Content Grid */
.error-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-icon div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.section-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Causes Section */
.causes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cause-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cause-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.cause-icon div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cause-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cause-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Pages Section */
.pages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.page-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.page-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Section */
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.legal-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #ffffff;
}

.legal-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.legal-link span {
    font-weight: 500;
}

.icon-moved {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
}

.icon-typo {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

.icon-outdated {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    box-shadow: 0 5px 15px rgba(162, 155, 254, 0.3);
}

.icon-nonexistent {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
}

/* Search Section */
.search-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.search-header {
    margin-bottom: 2rem;
}

.search-icon {
    margin-bottom: 1.5rem;
}

.search-icon .icon-search {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.search-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.suggestion-icon div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.suggestion-item span {
    font-weight: 600;
    font-size: 1rem;
}

.suggestion-item:hover .suggestion-icon div {
    transform: scale(1.1) rotate(5deg);
}

.icon-gaming {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.icon-new-player {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

.icon-help {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    box-shadow: 0 5px 15px rgba(162, 155, 254, 0.3);
}

.icon-causes {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
}

.icon-pages {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
}

.icon-legal {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

.error-actions h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.helpful-links h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.help-link:hover::before {
    transform: scaleX(1);
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.link-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
}

.link-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
}

.search-section-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.search-section-icon .icon-search {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.search-section:hover .search-section-icon .icon-search {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5);
}

.search-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.suggestion-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.suggestion-icon div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-gaming {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.icon-new-player {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.icon-help {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
}

.suggestion-item:hover .suggestion-icon div {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
    .error-page {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .error-hero {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-icon .icon-404 {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .error-message h1 {
        font-size: 2.5rem;
    }
    
    .error-message p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
    }
    
    .error-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .section-icon div {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cause-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .cause-icon div {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .cause-content h3 {
        font-size: 1.1rem;
    }
    
    .cause-content p {
        font-size: 0.9rem;
    }
    
    .pages-grid {
        gap: 0.8rem;
    }
    
    .page-link {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
    }
    
    .page-icon {
        font-size: 20px;
    }
    
    .page-info h3 {
        font-size: 1rem;
    }
    
    .page-info p {
        font-size: 0.85rem;
    }
    
    .legal-links {
        gap: 0.8rem;
    }
    
    .legal-link {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .legal-icon {
        font-size: 16px;
    }
    
    .search-section {
        padding: 2rem 1.5rem;
    }
    
    .search-icon .icon-search {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .search-header h2 {
        font-size: 1.5rem;
    }
    
    .search-header p {
        font-size: 1rem;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .suggestion-item {
        width: 100%;
        max-width: 250px;
        padding: 1.5rem 1rem;
    }
    
    .suggestion-icon div {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .suggestion-item span {
        font-size: 0.95rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Additional Modern Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #00d4ff 100%);
}

/* Page-specific Styles */
.page-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    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(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Content Pages */
.about-content,
.privacy-content,
.terms-content,
.disclaimer-content,
.support-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Story Mission Section - Image in the middle */
.story-mission-section {
    margin-bottom: 4rem;
}

.story-mission-section h2 {
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    color: #00d4ff;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image {
    text-align: center;
    margin: 2rem 0;
    order: 2;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.05);
}

/* Desktop Layout - Text left, Image right middle */
@media (min-width: 769px) {
    .story-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .story-text {
        grid-column: 1;
    }
    
    .story-image {
        grid-column: 2;
        order: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
    }
    
    .story-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.content-text h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.content-text h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Achievements Section */
.achievements {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.achievement-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.achievement-item h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Future Vision */
.future-vision {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.future-vision h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
}

.future-vision p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Privacy, Terms, Disclaimer Sections */
.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Support Page Styles */
.support-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.support-intro-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-intro-icon .icon-support {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.support-intro:hover .support-intro-icon .icon-support {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5);
}

.support-methods {
    margin: 4rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.support-method {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-method:hover::before {
    transform: scaleX(1);
}

.support-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-method-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-method-icon div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-live-chat {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.icon-email {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.icon-phone {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.support-method:hover .support-method-icon div {
    transform: scale(1.1) rotate(5deg);
}

.support-method:hover .icon-live-chat {
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5);
}

.support-method:hover .icon-email {
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
}

.support-method:hover .icon-phone {
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
}

.support-method h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.support-method p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.support-topics {
    margin: 3rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-category {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.topic-category h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.topic-category ul {
    list-style: none;
    padding: 0;
}

.topic-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.topic-category li:last-child {
    border-bottom: none;
}

/* Force Font Color Updates - High Priority */
.support-intro p.support-intro-text,
.response-times h2.response-times-title,
.response-times .response-item h3.response-item-title,
.response-times .response-item p.response-item-text {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Support Intro Text Styling - Maximum Priority */
.support-methods .support-intro p.support-intro-text,
.support-content .support-methods .support-intro p.support-intro-text,
body .support-methods .support-intro p.support-intro-text {
    color: #ffd700 !important;
    font-size: 1.4rem !important;
    line-height: 2.0 !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    font-weight: 600 !important;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.6) !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 30%, #ff6b35 70%, #ffd700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    opacity: 1 !important;
    letter-spacing: 0.8px !important;
    animation: textGlow 3s ease-in-out infinite alternate !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Force Override Any Conflicting Styles */
.support-intro p,
.support-intro p.support-intro-text,
.support-methods p.support-intro-text {
    color: #ffd700 !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 30%, #ff6b35 70%, #ffd700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Support Intro Title Styling - Now H3 */
.support-methods .support-intro h3 {
    color: #00d4ff !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 3px 6px rgba(0, 212, 255, 0.5) !important;
    letter-spacing: 1px !important;
    animation: titleGlow 2.5s ease-in-out infinite alternate !important;
}

/* Support Intro Icon Styling */
.support-methods .support-intro .support-intro-icon {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.support-methods .support-intro .support-intro-icon .icon-support {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%) !important;
    font-size: 32px !important;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3) !important;
    animation: float 3s ease-in-out infinite !important;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 4px 8px rgba(255, 215, 0, 0.6);
    }
    100% {
        text-shadow: 0 6px 12px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 107, 53, 0.3);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 3px 6px rgba(0, 212, 255, 0.5);
    }
    100% {
        text-shadow: 0 5px 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.3);
    }
}

/* Response Times Styling - Modern Card Layout - Maximum Priority */
.response-times,
.support-content .response-times,
body .response-times {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%) !important;
    padding: 4rem 0 !important;
    margin: 3rem 0 !important;
    border-radius: 25px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.response-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.response-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Response Times Title - Maximum Priority */
.response-times .response-header h2.response-times-title,
.support-content .response-times h2.response-times-title,
body .response-times h2.response-times-title {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 50%, #ffd700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 8px rgba(0, 212, 255, 0.3) !important;
    letter-spacing: 1px !important;
    animation: titleGlow 3s ease-in-out infinite alternate !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Force Override for Response Times Title */
.response-times h2,
.response-times-title {
    color: #ffffff !important;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 50%, #ffd700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.response-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.response-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.response-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.response-card:hover::before {
    opacity: 1;
}

.response-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.response-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.response-icon .icon-live-chat,
.response-icon .icon-email,
.response-icon .icon-phone,
.response-icon .icon-complex {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.response-icon .icon-live-chat {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
}

.response-icon .icon-email {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

.response-icon .icon-phone {
    background: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
}

.response-icon .icon-complex {
    background: linear-gradient(135deg, #9C27B0 0%, #00d4ff 100%);
}

.response-card:hover .response-icon div {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.response-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.response-item-title {
    color: #ffffff !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.response-item-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.response-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-dot.busy {
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.status-dot.processing {
    background: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.status-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Response Times Responsive Design */
@media (max-width: 768px) {
    .response-times {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .response-times-title {
        font-size: 2.2rem !important;
    }
    
    .response-subtitle {
        font-size: 1rem !important;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .response-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .response-icon .icon-live-chat,
    .response-icon .icon-email,
    .response-icon .icon-phone,
    .response-icon .icon-complex {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .response-item-title {
        font-size: 1.4rem !important;
    }
    
    .response-item-text {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .response-times {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }
    
    .response-times-title {
        font-size: 1.8rem !important;
    }
    
    .response-card {
        padding: 1rem;
        min-height: 160px;
    }
    
    .response-icon .icon-live-chat,
    .response-icon .icon-email,
    .response-icon .icon-phone,
    .response-icon .icon-complex {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.response-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 3rem 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-weight: 500;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
