/* Max Win Spin - Casino Gaming Platform Styles */
/* Optimized for performance and accessibility with casino theme */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #f4f4f4;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d1810 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container and Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Georgia', serif;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #ff6b35;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffed4e;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

a:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: linear-gradient(90deg, #2d1810, #1a1a1a, #2d1810);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid #ffd700;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '♠';
    margin: 0 10px;
    color: #ffd700;
    font-weight: bold;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f0f0f 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffd700;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.casino-symbol {
    color: #ff6b35;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    text-decoration: none;
    border-color: #ffed4e;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-login {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.btn-register {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    border: 2px solid #ffd700;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f0f0f 100%);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino)"/></svg>');
    opacity: 0.3;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 450px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f0f0f 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Content Sections */
.brand-intro,
.platform-features,
.registration-process,
.advantages-security,
.faq-section,
.cta-section,
.about-content,
.privacy-content,
.terms-content,
.disclaimer-content,
.support-content {
    padding: 4rem 0;
}

.brand-intro {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.platform-features {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.registration-process {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.advantages-security {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.faq-section {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0f0f0f 100%);
    color: white;
    text-align: center;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Registration Steps - Progressive Layout */
.registration-process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.registration-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ffd700, #00d4aa);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.registration-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.registration-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.registration-step:nth-child(1) {
    margin-left: 0;
    border-left-color: #ff6b35;
}

.registration-step:nth-child(2) {
    margin-left: 10%;
    border-left-color: #ffd700;
}

.registration-step:nth-child(3) {
    margin-left: 20%;
    border-left-color: #00d4aa;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
}

.registration-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.registration-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.registration-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
}

.step-content {
    flex: 1;
}

.registration-step h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 1.3rem;
}

.registration-step:nth-child(1) h3 {
    color: #ff6b35;
}

.registration-step:nth-child(2) h3 {
    color: #ffd700;
}

.registration-step:nth-child(3) h3 {
    color: #00d4aa;
}

.registration-step p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Animation effects for progressive steps */
.registration-step {
    animation: slideInFromLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.registration-step:nth-child(1) {
    animation-delay: 0.2s;
}

.registration-step:nth-child(2) {
    animation-delay: 0.4s;
}

.registration-step:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for step numbers */
.step-number {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Login Process */
.login-process {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.login-process h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Login Process Layout */
.login-process-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.login-process-text {
    flex: 1;
    padding-right: 1rem;
}

.login-process-image {
    flex: 1;
    text-align: center;
}

.login-process-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.login-process-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.login-process-buttons {
    margin-top: 1.5rem;
    text-align: center;
}

.login-process-buttons .btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-process-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-item {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.advantage-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.advantage-item:nth-child(1) .advantage-icon {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.advantage-item:nth-child(1):hover .advantage-icon {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

.advantage-item:nth-child(2) .advantage-icon {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.advantage-item:nth-child(2):hover .advantage-icon {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.advantage-item:nth-child(3) .advantage-icon {
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.5));
}

.advantage-item:nth-child(3):hover .advantage-icon {
    filter: drop-shadow(0 0 15px rgba(0, 212, 170, 0.8));
}

.advantage-item:nth-child(4) .advantage-icon {
    filter: drop-shadow(0 0 10px rgba(255, 71, 87, 0.5));
}

.advantage-item:nth-child(4):hover .advantage-icon {
    filter: drop-shadow(0 0 15px rgba(255, 71, 87, 0.8));
}

.advantage-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

/* Individual color themes for each advantage item */
.advantage-item:nth-child(1) h3 {
    color: #ff6b35; /* Security - Orange/Red */
}

.advantage-item:nth-child(2) h3 {
    color: #ffd700; /* Withdrawals - Gold */
}

.advantage-item:nth-child(3) h3 {
    color: #00d4aa; /* Support - Teal */
}

.advantage-item:nth-child(4) h3 {
    color: #ff4757; /* Mobile - Pink/Red */
}

/* FAQ Section */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-item h3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
    padding: 1.5rem;
    margin: 0;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.faq-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.faq-item:hover .faq-icon {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.faq-item:nth-child(1) .faq-icon {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
}

.faq-item:nth-child(1):hover .faq-icon {
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
}

.faq-item:nth-child(2) .faq-icon {
    filter: drop-shadow(0 0 8px rgba(220, 53, 69, 0.4));
}

.faq-item:nth-child(2):hover .faq-icon {
    filter: drop-shadow(0 0 12px rgba(220, 53, 69, 0.6));
}

.faq-item:nth-child(3) .faq-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.faq-item:nth-child(3):hover .faq-icon {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.faq-item:nth-child(4) .faq-icon {
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.4));
}

.faq-item:nth-child(4):hover .faq-icon {
    filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.6));
}

/* About Page Styles */
.about-intro,
.about-values,
.about-achievements,
.about-future {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.value-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 1.4rem;
}

.value-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Special styling for each value item */
.value-item:nth-child(1) h3 {
    color: #ff6b35; /* Security - Orange/Red */
}

.value-item:nth-child(2) h3 {
    color: #ffd700; /* Transparency - Gold */
}

.value-item:nth-child(3) h3 {
    color: #00d4aa; /* Innovation - Teal */
}

.value-item:nth-child(4) h3 {
    color: #ff4757; /* Customer-Centric - Pink/Red */
}

/* Add subtle background variations for each card */
.value-item:nth-child(1) {
    border-color: rgba(255, 107, 53, 0.3);
}

.value-item:nth-child(1):hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.value-item:nth-child(2) {
    border-color: rgba(255, 215, 0, 0.3);
}

.value-item:nth-child(2):hover {
    border-color: #ffd700;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.value-item:nth-child(3) {
    border-color: rgba(0, 212, 170, 0.3);
}

.value-item:nth-child(3):hover {
    border-color: #00d4aa;
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
}

.value-item:nth-child(4) {
    border-color: rgba(255, 71, 87, 0.3);
}

.value-item:nth-child(4):hover {
    border-color: #ff4757;
    box-shadow: 0 12px 30px rgba(255, 71, 87, 0.4);
}

/* Privacy/Terms/Disclaimer Page Styles */
.privacy-section,
.terms-section,
.disclaimer-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: #ff6b35;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.6;
}

.privacy-section strong,
.terms-section strong,
.disclaimer-section strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    color: #ffd700;
    font-style: italic;
    font-size: 1rem;
}

/* Privacy Content Container */
.privacy-content {
    padding: 2rem 0;
}

/* Support Content Container */
.support-content {
    padding: 2rem 0;
}

.support-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.support-intro h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.support-intro p {
    color: #2c3e50;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.support-methods h2,
.faq-support h2,
.support-topics h2,
.support-tips h2,
.support-contact h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.support-contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-top: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.support-contact h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.support-contact p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Support Page Styles */
.support-methods {
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-method {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.support-method h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.support-method p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.support-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.support-method:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.support-method:nth-child(1) .support-icon {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.support-method:nth-child(1):hover .support-icon {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

.support-method:nth-child(2) .support-icon {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.support-method:nth-child(2):hover .support-icon {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.support-method:nth-child(3) .support-icon {
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.5));
}

.support-method:nth-child(3):hover .support-icon {
    filter: drop-shadow(0 0 15px rgba(0, 212, 170, 0.8));
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.topic-category h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.topic-category ul {
    list-style: none;
    padding: 0;
}

.topic-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #2c3e50;
    line-height: 1.6;
}

.topic-category li:last-child {
    border-bottom: none;
}

.topic-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.topic-category:hover .topic-icon {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.topic-category:nth-child(1) .topic-icon {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
}

.topic-category:nth-child(1):hover .topic-icon {
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
}

.topic-category:nth-child(2) .topic-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.topic-category:nth-child(2):hover .topic-icon {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.topic-category:nth-child(3) .topic-icon {
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.4));
}

.topic-category:nth-child(3):hover .topic-icon {
    filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.6));
}

.topic-category:nth-child(4) .topic-icon {
    filter: drop-shadow(0 0 8px rgba(255, 71, 87, 0.4));
}

.topic-category:nth-child(4):hover .topic-icon {
    filter: drop-shadow(0 0 12px rgba(255, 71, 87, 0.6));
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.tip-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.tip-item p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tip-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.tip-item:hover .tip-icon {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.tip-item:nth-child(1) .tip-icon {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
}

.tip-item:nth-child(1):hover .tip-icon {
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
}

.tip-item:nth-child(2) .tip-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.tip-item:nth-child(2):hover .tip-icon {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

.tip-item:nth-child(3) .tip-icon {
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.4));
}

.tip-item:nth-child(3):hover .tip-icon {
    filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.6));
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* 404 Error Page */
.error-page {
    padding: 4rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.error-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.error-illustration {
    margin-bottom: 3rem;
    text-align: center;
}

.error-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.error-text {
    text-align: center;
    margin-bottom: 3rem;
}

.error-text h1 {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.error-text h2 {
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 1.8rem;
}

.error-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.helpful-links,
.search-suggestion {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin: 2rem auto;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    max-width: 700px;
}

.helpful-links ul,
.search-suggestion ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.helpful-links h3,
.search-suggestion h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.helpful-links ul,
.search-suggestion ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.helpful-links li,
.search-suggestion li {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(248, 249, 250, 0.5);
    color: #2c3e50;
    line-height: 1.6;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 240, 241, 0.5);
}

.helpful-links li:hover,
.search-suggestion li:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.helpful-links li:last-child,
.search-suggestion li:last-child {
    border-bottom: none;
}

/* 404 Page Icons */
.links-icon,
.search-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.helpful-links:hover .links-icon,
.search-suggestion:hover .search-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.link-icon,
.suggestion-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.helpful-links li:hover .link-icon,
.search-suggestion li:hover .suggestion-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d1810 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .casino-symbol {
        font-size: 1.2rem;
    }
    
    .nav-center {
        order: 3;
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-buttons {
        justify-content: center;
        order: 2;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 0;
        text-align: center;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .features-grid,
    .advantages-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    
    /* Responsive design for registration steps */
    .registration-steps::before {
        display: none;
    }
    
    .registration-step {
        margin-left: 0 !important;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .registration-process-container {
        padding: 1rem 0;
    }
    
    /* Responsive design for advantage icons */
    .advantage-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    /* Tablet responsive for login process */
    .login-process-content {
        gap: 2rem;
    }
    
    .login-process-image img {
        max-width: 95%;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .advantages-grid,
    .support-grid,
    .topics-grid,
    .tips-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .error-text h1 {
        font-size: 3rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile responsive for advantage icons */
    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile responsive for login process */
    .login-process-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .login-process-text {
        padding-right: 0;
    }
    
    .login-process-image img {
        max-width: 90%;
    }
    
    /* Mobile responsive for privacy/terms pages */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .privacy-section,
    .terms-section,
    .disclaimer-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.2rem;
    }
    
    /* Mobile responsive for support page */
    .support-intro,
    .support-contact {
        padding: 1.5rem;
    }
    
    .support-method,
    .topic-category,
    .tip-item {
        padding: 1.5rem;
    }
    
    .support-methods h2,
    .faq-support h2,
    .support-topics h2,
    .support-tips h2,
    .support-contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile responsive for icons */
    .support-icon,
    .faq-icon,
    .topic-icon,
    .tip-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .links-icon,
    .search-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .link-icon,
    .suggestion-icon {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
    
    /* Mobile responsive for 404 page */
    .error-page {
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .error-content {
        padding: 0 1rem;
    }
    
    .error-text h1 {
        font-size: 3rem;
    }
    
    .error-text h2 {
        font-size: 1.4rem;
    }
    
    .error-text p {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .helpful-links,
    .search-suggestion {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .helpful-links ul,
    .search-suggestion ul {
        gap: 0.6rem;
    }
    
    .helpful-links li,
    .search-suggestion li {
        padding: 0.6rem 0.8rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Casino Theme Effects */
.casino-glow {
    animation: casinoGlow 3s ease-in-out infinite alternate;
}

@keyframes casinoGlow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.sparkle {
    position: relative;
    overflow: hidden;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Floating Casino Elements */
.casino-bg::before {
    content: '♠ ♥ ♦ ♣';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    font-size: 2rem;
    color: #ffd700;
    z-index: -1;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

/* Enhanced Button Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Card Flip Effect for Feature Cards */
.feature-card {
    perspective: 1000px;
}

.feature-card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 
        0 0 5px #ffd700,
        0 0 10px #ffd700,
        0 0 15px #ffd700,
        0 0 20px #ff6b35;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 5px #ffd700,
            0 0 10px #ffd700,
            0 0 15px #ffd700,
            0 0 20px #ff6b35;
    }
    50% {
        text-shadow: 
            0 0 2px #ffd700,
            0 0 5px #ffd700,
            0 0 8px #ffd700,
            0 0 12px #ff6b35;
    }
}

/* Print styles */
@media print {
    .nav-buttons,
    .hero-buttons,
    .cta-buttons,
    .contact-buttons {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .page-header {
        background: none;
        color: #000;
    }
    
    .cta-section {
        background: none;
        color: #000;
    }
    
    footer {
        background: none;
        color: #000;
    }
}
