/* WInstar Platform - Modern CSS Styles */

:root {
    --primary-color: #1e40af;
    --secondary-color: #6366f1;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --purple-color: #8b5cf6;
    --pink-color: #ec4899;
    --cyan-color: #06b6d4;
    --orange-color: #f97316;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: #374151 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eef2ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
}

.btn-outline-secondary {
    border: 2px solid #d1d5db;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Hero Widgets */
.hero-widgets {
    padding: 2rem 0;
}

.widget-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.widget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-widget {
    background: white;
}

.gaming-widget {
    background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
}

.blockchain-widget {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-color));
}

.market-widget {
    background: white;
}

.dapps-widget {
    background: linear-gradient(135deg, var(--cyan-color), var(--primary-color));
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.widget-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.gaming-widget .widget-label,
.blockchain-widget .widget-label,
.dapps-widget .widget-label {
    color: rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.widget-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.widget-change {
    font-size: 0.85rem;
    font-weight: 500;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.widget-sublabel {
    font-size: 0.85rem;
    opacity: 0.8;
}

.widget-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Gaming Widget Images */
.gaming-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    opacity: 0.3;
}

.gaming-widget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

.users-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--cyan-color));
}

.growth-icon {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.gaming-icon {
    background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
}

.crypto-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-color));
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, white, #f8fafc);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Gaming Section */
.gaming-section {
    background: linear-gradient(135deg, #581c87 0%, #1e40af 50%, #4338ca 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.gaming-badge {
    background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Game Cards */
.game-feature-card,
.game-card,
.featured-game-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 200px;
}

.game-feature-card {
    min-height: 300px;
}

.game-feature-card:hover,
.game-card:hover,
.featured-game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.ludo-feature .game-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(52, 211, 153, 0.8));
}

.aviator-card .game-overlay {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(6, 182, 212, 0.8));
}

.card-game-card .game-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(236, 72, 153, 0.8));
}

.game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.hot-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.updated-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.live-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.game-content-bottom {
    margin-top: auto;
}

.game-feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.game-feature-desc,
.game-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.players-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Featured Games */
.featured-game-card {
    min-height: 150px;
}

.rummy-card .game-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(52, 211, 153, 0.8));
}

.poker-card .game-overlay {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.8));
}

.bitcoin-card .game-overlay {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(22, 163, 74, 0.8));
}

.gadget-card .game-overlay {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(59, 130, 246, 0.8));
}

.bonus-indicators {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

/* Gaming Features */
.gaming-features {
    padding: 2rem 0;
}

.gaming-feature {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.gaming-feature:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gaming-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.gaming-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gaming-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-gaming {
    background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.btn-gaming:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

/* Gaming Widgets */
.gaming-widgets {
    padding: 2rem 0;
}

.gaming-widget-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gaming-widget-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.gaming-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    border-radius: 20px;
    overflow: hidden;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}

.gaming-widget-card > * {
    position: relative;
    z-index: 1;
}

.tournament-prize-widget {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-color)) !important;
}

.gaming-widget-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gaming-widget-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.text-purple {
    color: var(--purple-color);
}

.text-blue {
    color: var(--cyan-color);
}

/* Blockchain Section */
.blockchain-section {
    background: linear-gradient(135deg, var(--slate-900) 0%, #000000 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.blockchain-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-color));
}

/* Blockchain Features */
.blockchain-feature-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.blockchain-feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.feature-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
}

.feature-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.blockchain-feature-card:hover .feature-bg-img {
    opacity: 0.6;
}

.wallet-img {
    object-fit: contain !important;
    opacity: 0.8 !important;
}

.blockchain-feature-card:hover .wallet-img {
    opacity: 0.9 !important;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cyan-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.blockchain-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.explorer-card .feature-icon {
    background: linear-gradient(135deg, var(--slate-800), var(--primary-color));
}

.dapps-card .feature-icon {
    background: linear-gradient(135deg, var(--purple-color), #c084fc);
}

.wallet-card .feature-icon {
    background: linear-gradient(135deg, var(--success-color), var(--cyan-color));
}

.exchange-card .feature-icon {
    background: linear-gradient(135deg, var(--danger-color), var(--pink-color));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Roadmap */
.roadmap {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid #374151;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.roadmap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    bottom: -32px;
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.roadmap-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.roadmap-item:hover .roadmap-icon {
    transform: scale(1.1);
}

.roadmap-content {
    flex: 1;
}

.roadmap-phase {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cyan-color);
    margin-bottom: 0.5rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.roadmap-status.upcoming {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.roadmap-status.planning {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.roadmap-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.roadmap-description {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Blockchain Statistics */
.blockchain-stat-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.blockchain-stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.stat-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 24px;
    overflow: hidden;
}

.stat-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.blockchain-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.blockchain-stat-label {
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA */
.blockchain-cta {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, var(--slate-800), var(--primary-color));
    padding: 3rem;
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: #1f2937;
    color: white;
}

.footer-brand .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    space-y: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-divider {
    border-color: #374151;
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .service-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 1.5rem;
    }
    
    .gaming-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .gaming-feature-icon {
        margin: 0 auto 1rem;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }
    
    .roadmap-icon {
        margin: 0 auto 1.5rem;
    }
    
    .roadmap-item::after {
        display: none;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .game-feature-title {
        font-size: 2rem;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .widget-card {
        padding: 1rem;
    }
    
    .widget-value {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .blockchain-stat-value {
        font-size: 2rem;
    }
}