/* ZenoVortex Rummy - Main Stylesheet */
/* Optimized for Indian market with responsive design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: #555;
}

/* Links */
a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background-color: #e74c3c;
    color: white;
}

/* 18+ Age Restriction Banner */
.age-restriction-banner {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
}

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 41px;
    z-index: 999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.logo span {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    background-color: #f8f9fa;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Game Preview Section */
.game-preview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.preview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Culture Section */
.culture-section {
    padding: 80px 20px;
    background-color: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.culture-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.culture-image img {
    width: 100%;
    border-radius: 12px;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    font-size: 80px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsible-text h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.responsible-text ul {
    list-style-position: inside;
    margin: 20px 0;
    text-align: left;
}

/* Game Page Styles */
.game-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.game-header h1 {
    color: white;
}

.game-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.game-section {
    padding: 50px 0;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
}

.game-info {
    text-align: center;
    margin-bottom: 30px;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
}

.game-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border: 3px solid #e74c3c;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-iframe {
    display: none;
}

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ecf0f1;
    border-top: 5px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Game Tips */
.game-tips {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tip-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-card h3 {
    color: #e74c3c;
    margin-bottom: 12px;
    font-size: 18px;
}

/* Game Variants */
.game-variants {
    padding: 60px 0;
    background-color: white;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.variant-card {
    padding: 30px;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.variant-card:hover {
    border-color: #e74c3c;
}

.variant-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.variant-card ul {
    list-style-position: inside;
    margin-top: 15px;
}

/* Rules Page Styles */
.rules-header {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.rules-header h1 {
    color: white;
}

.rules-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.table-contents {
    padding: 50px 0;
    background-color: white;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #333;
}

.toc-item:hover {
    background-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.toc-number {
    background-color: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.toc-item:hover .toc-number {
    background-color: white;
    color: #e74c3c;
}

.rules-section {
    padding: 60px 0;
}

.rules-section:nth-child(even) {
    background-color: #f8f9fa;
}

.rules-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.rules-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.rule-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rule-card.highlight {
    border-left: 5px solid #e74c3c;
    background-color: #fff5f5;
}

.card-values {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.value-item {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.examples {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.examples h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

.sequence-section {
    margin: 30px 0;
}

.visual-example {
    text-align: center;
    margin: 40px 0;
}

.visual-example img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Jokers Section */
.joker-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.joker-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.joker-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.example {
    margin-top: 15px;
    padding: 10px;
    background-color: #fff8dc;
    border-radius: 6px;
    border-left: 3px solid #f39c12;
}

.joker-rules {
    margin: 40px 0;
}

.important-rules {
    list-style: none;
    counter-reset: rule-counter;
}

.important-rules li {
    counter-increment: rule-counter;
    padding: 15px;
    margin: 10px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 50px;
}

.important-rules li::before {
    content: counter(rule-counter);
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #e74c3c;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

/* Scoring Section */
.scoring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.scoring-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scoring-table th,
.scoring-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.scoring-table th {
    background-color: #e74c3c;
    color: white;
    font-weight: 600;
}

.scenario {
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.scenario h4 {
    margin-bottom: 10px;
}

.scoring-image {
    text-align: center;
    margin-top: 40px;
}

.scoring-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* Winning Section */
.winning-requirements {
    margin: 40px 0;
}

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement.highlight {
    border-left: 5px solid #e74c3c;
    background-color: #fff5f5;
}

.req-number {
    background-color: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.req-content h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.valid-declarations {
    margin: 40px 0;
}

.declaration-example {
    margin: 25px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.declaration-example h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.declaration-process {
    margin: 40px 0;
}

.declaration-process ol {
    list-style: none;
    counter-reset: step-counter;
}

.declaration-process li {
    counter-increment: step-counter;
    padding: 15px;
    margin: 10px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 60px;
}

.declaration-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 15px;
    background-color: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Strategies Section */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.strategy-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.strategy-card ul {
    list-style: none;
}

.strategy-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.strategy-card li:last-child {
    border-bottom: none;
}

.strategy-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.practice-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
}

.practice-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.practice-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* How to Play Page Styles */
.howto-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.howto-header h1 {
    color: white;
}

.howto-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.steps-guide {
    padding: 60px 0;
}

.step-section {
    margin: 60px 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-header {
    background-color: #f39c12;
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background-color: white;
    color: #f39c12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
}

.step-header h3 {
    color: white;
    margin: 0;
    font-size: 28px;
}

.step-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 30px;
}

.step-text h4 {
    color: #f39c12;
    margin: 20px 0 10px 0;
}

.step-text ul, .step-text ol {
    margin: 15px 0;
    padding-left: 20px;
}

.step-text li {
    margin: 8px 0;
    line-height: 1.6;
}

.step-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.priority-list {
    margin: 30px 0;
}

.priority-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.priority-number {
    background-color: #e74c3c;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.priority-content h5 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.declaration-checklist {
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-weight: 500;
}

.check {
    color: #27ae60;
    font-size: 20px;
    font-weight: bold;
}

.warning-box {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.warning-box h5 {
    color: #856404;
    margin-bottom: 10px;
}

.warning-box ul {
    margin: 0;
    color: #856404;
}

/* Quick Reference */
.quick-reference {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.ref-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ref-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.ref-card ul {
    list-style: none;
}

.ref-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.ref-card li:last-child {
    border-bottom: none;
}

/* Practice Scenarios */
.practice-scenarios {
    padding: 60px 0;
    background-color: white;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scenario-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #f39c12;
}

.scenario-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.hand-example {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.hand-example p {
    margin: 8px 0;
    font-size: 14px;
}

.ready-to-play {
    padding: 60px 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
}

.ready-to-play h2 {
    color: white;
    margin-bottom: 20px;
}

.ready-to-play p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-header h1 {
    color: white;
}

.about-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.our-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card h3 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 24px;
}

.what-makes-different {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.our-team {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.our-commitment {
    padding: 80px 0;
    background-color: white;
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.commitment-text h3 {
    color: #2c3e50;
    margin: 30px 0 15px 0;
}

.commitment-image img {
    width: 100%;
    border-radius: 12px;
}

.gaming-heritage {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.heritage-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.technology-innovation {
    padding: 60px 0;
    background-color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-3px);
}

.tech-card h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.join-journey {
    padding: 60px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.join-journey h2 {
    color: white;
    margin-bottom: 20px;
}

.join-journey p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.journey-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsible Gaming Page Styles */
.responsible-header {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 60px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.header-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.header-text h1 {
    color: white;
    margin-bottom: 15px;
}

.header-text p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.our-commitment-rg {
    padding: 60px 0;
    background-color: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.commitment-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.commitment-card h3 {
    color: #8e44ad;
    margin-bottom: 15px;
}

.gaming-guidelines {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.guidelines-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guideline-section h3 {
    color: #8e44ad;
    margin-bottom: 20px;
    font-size: 24px;
}

.guideline-list {
    display: grid;
    gap: 15px;
}

.guideline-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #8e44ad;
}

.guideline-item strong {
    color: #2c3e50;
}

.warning-signs {
    padding: 60px 0;
    background-color: white;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.warning-category {
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.warning-category h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.warning-category ul {
    list-style-position: inside;
}

.warning-category li {
    margin: 8px 0;
    color: #2c3e50;
}

.self-assessment {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.assessment-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.question-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.question-card h3 {
    color: #8e44ad;
    margin-bottom: 15px;
}

.question-card ul {
    list-style: none;
}

.question-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.question-card li:last-child {
    border-bottom: none;
}

.question-card li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #8e44ad;
    font-weight: bold;
}

.assessment-result {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background-color: #fff3cd;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
}

.tools-resources {
    padding: 60px 0;
    background-color: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.tool-card h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.tool-card ul {
    list-style: none;
}

.tool-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tool-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.help-support {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.support-text h3 {
    color: #8e44ad;
    margin: 30px 0 15px 0;
}

.support-text ol {
    margin: 20px 0;
    padding-left: 20px;
}

.support-text li {
    margin: 10px 0;
    line-height: 1.6;
}

.support-contacts {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-contacts h3 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.healthy-gaming-tips {
    padding: 60px 0;
    background-color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-card h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.contact-support {
    padding: 60px 0;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    text-align: center;
}

.contact-support h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-support p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.support-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    color: white;
}

.contact-header p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.contact-options {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    color: #16a085;
    margin-bottom: 15px;
}

.contact-info {
    margin: 15px 0;
    font-weight: 600;
    color: #2c3e50;
}

.contact-hours {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    padding: 8px 16px;
    background-color: #16a085;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #138d7a;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.form-text h2 {
    color: #16a085;
    margin-bottom: 20px;
}

.form-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.benefit-icon {
    color: #27ae60;
    font-weight: bold;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}

.faq-section {
    padding: 60px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-category {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.faq-category h3 {
    color: #16a085;
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 16px;
}

.faq-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.location-coverage {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-text h3 {
    color: #16a085;
    margin: 30px 0 15px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.city-list ul {
    list-style: none;
    margin: 0;
}

.city-list li {
    padding: 5px 0;
    color: #2c3e50;
    font-weight: 500;
}

.coverage-image img {
    width: 100%;
    border-radius: 12px;
}

.support-hours {
    padding: 60px 0;
    background-color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hours-card {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.hours-card h3 {
    color: #16a085;
    margin-bottom: 15px;
}

.time-info {
    margin: 15px 0;
}

.time-info p {
    margin: 5px 0;
    color: #2c3e50;
    font-weight: 500;
}

.response-time {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

.emergency-support {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.support-image {
    width: 100%;
    border-radius: 12px;
}

.emergency-text h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.emergency-contacts {
    margin: 30px 0;
}

.emergency-item {
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.emergency-item strong {
    color: #e74c3c;
    display: block;
    margin-bottom: 5px;
}

/* Footer Styles */
.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    padding: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-age-badge {
    width: 50px;
    height: 50px;
    margin-top: 15px;
}

.helpline-info {
    margin-top: 15px;
    padding: 10px;
    background-color: #34495e;
    border-radius: 6px;
}

.helpline-info p {
    margin: 0;
    font-size: 14px;
    color: #ecf0f1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
    }
    
    .responsible-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-features {
        justify-content: center;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-controls {
        justify-content: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rules-content {
        grid-template-columns: 1fr;
    }
    
    .joker-types {
        grid-template-columns: 1fr;
    }
    
    .scoring-content {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        grid-template-columns: 1fr;
    }
    
    .reference-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-questions {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .journey-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .support-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .game-frame {
        height: 300px;
    }
}

/* Privacy Policy Specific Styles */
.privacy-overview {
    margin-bottom: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.overview-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.overview-icon {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1;
}

.overview-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.privacy-toc {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.toc-list li {
    padding: 10px;
}

.toc-list a {
    color: #e74c3c;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: #2c3e50;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.privacy-section h3 {
    color: #e74c3c;
    margin-top: 25px;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    margin: 20px 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.info-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.principle-box, .contact-box {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin: 20px 0;
}

.contact-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.header-meta {
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

.header-meta span {
    margin: 0 10px;
}

/* New showcase elements for no-image design */
.game-showcase, .culture-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-showcase h3, .culture-showcase h3 {
    color: #e74c3c;
    margin-bottom: 25px;
    font-size: 24px;
}

.feature-highlights, .culture-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.highlight-item, .culture-point {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.footer-age-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.footer-badge {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin: 2px 5px;
    font-weight: 500;
}

/* Additional visual elements for no-image design */
.step-visual, .rules-visual, .team-showcase, .values-showcase, .india-coverage, .support-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-demo, .flow-demo, .combination-grid, .scoring-grid, .team-stats, .values-grid, .coverage-stats, .emergency-features {
    margin: 20px 0;
}

.card-demo {
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: #e74c3c;
}

.demo-text {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.flow-step {
    background: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    border-left: 3px solid #e74c3c;
}

.combination-grid, .scoring-grid, .team-stats, .values-grid, .coverage-stats, .emergency-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.combo-item, .score-item, .stat-item, .value-item, .coverage-item, .feature {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #e74c3c;
    font-size: 14px;
}

.meld-demonstration h4, .scoring-chart h4, .team-showcase h3, .values-showcase h3, .india-coverage h3, .support-visual h3 {
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .combination-grid, .scoring-grid, .team-stats, .values-grid, .coverage-stats, .emergency-features {
        grid-template-columns: 1fr;
    }
    
    .step-visual, .rules-visual, .team-showcase, .values-showcase, .india-coverage, .support-visual {
        padding: 20px;
    }
    
    .card-demo {
        font-size: 18px;
        letter-spacing: 2px;
    }
}