/* Frontend styles for Satta King Manager - Professional Dark Theme */

:root {
    --skm-primary-color: #ff6b6b;
    --skm-secondary-color: #4ecdc4;
    --skm-dark-bg: #1a1a2e;
    --skm-darker-bg: #16213e;
    --skm-accent: #0f3460;
    --skm-text-light: #ffffff;
    --skm-text-muted: #a8a8a8;
    --skm-success: #00d4aa;
    --skm-warning: #ff6b35;
    --skm-border-color: #3e4a5b;
    --skm-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --skm-card-bg: #ffffff;
    --skm-card-text: #2c3e50;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--skm-dark-bg);
    color: var(--skm-text-light);
    line-height: 1.6;
}

.skm-professional-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.skm-section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.skm-section-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--skm-primary-color);
}

.skm-section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--skm-primary-color), var(--skm-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.skm-section-header-center .skm-section-subtitle {
    color: var(--skm-text-muted);
    font-size: 1.1rem;
}

/* Game Result Cards - New Pink/Purple Design */
.skm-game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.skm-game-result-card {
    background: linear-gradient(145deg, #a855f7, #ec4899);
    border-radius: 24px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skm-game-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
}

.skm-card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    margin-bottom: 1rem;
}

.skm-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: skm-pulse 1.5s infinite;
}

@keyframes skm-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.skm-card-city h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.skm-card-city .skm-game-timing {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skm-result-box {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.skm-result-star {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.skm-next-draw-container {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skm-next-draw-container .skm-next-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.skm-next-draw-container .skm-next-time {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Professional Styling */
.skm-professional-homepage {
    background: var(--skm-dark-bg);
    min-height: 100vh;
}

/* Header */
.skm-header {
    background: linear-gradient(135deg, var(--skm-darker-bg), var(--skm-accent));
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.skm-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skm-brand h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--skm-text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skm-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.skm-nav-links a {
    color: var(--skm-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.skm-nav-links a:not(.skm-login-btn):hover {
    color: var(--skm-primary-color);
    background: rgba(255, 107, 107, 0.1);
}

.skm-login-btn {
    background-color: var(--skm-primary-color);
    border: 2px solid var(--skm-primary-color);
    font-weight: bold;
}
.skm-login-btn:hover {
    background-color: transparent;
    color: var(--skm-primary-color);
}

/* Hero Section */
.skm-hero-pro {
    background: linear-gradient(135deg, var(--skm-accent), var(--skm-darker-bg));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--skm-border-color);
}

.skm-hero-content {
    position: relative;
    z-index: 2;
}

.skm-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--skm-primary-color), var(--skm-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.skm-hero-subtitle {
    font-size: 1.2rem;
    color: var(--skm-text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.skm-hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.skm-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.skm-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.skm-feature-item span {
    font-weight: 600;
    color: var(--skm-text-light);
}

/* Main Content */
.skm-main-content {
    padding: 3rem 0;
}

/* Live Status Cards */
.skm-live-status {
    margin-bottom: 4rem;
}

.skm-status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.skm-status-card {
    background: linear-gradient(135deg, var(--skm-darker-bg), var(--skm-accent));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--skm-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skm-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.skm-status-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: var(--skm-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skm-live-clock, .skm-countdown {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--skm-primary-color), var(--skm-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', monospace;
}

/* Live Results Section - Modern Redesign */
.skm-live-results-section {
    padding: 3rem 0;
}

.skm-live-results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.skm-live-results-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skm-live-results-icon {
    background: linear-gradient(45deg, #8a2be2, #ff1493);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
}

.skm-live-results-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.skm-live-results-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 0;
}

.skm-live-results-title h2 span {
    background: linear-gradient(45deg, #c084fc, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skm-live-results-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #d8b4fe;
}

.skm-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.skm-stat-item {
    text-align: center;
}

.skm-stat-item .skm-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.skm-stat-item .skm-stat-label {
    font-size: 0.9rem;
    color: #d8b4fe;
}

.skm-stats-divider {
    width: 1px;
    height: 2rem;
    background: rgba(216, 180, 254, 0.3);
}

/* Game Result Cards - Final Redesign */
.skm-game-result-card {
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.skm-game-result-card.live {
    background: linear-gradient(145deg, #6d28d9, #be185d);
    box-shadow: 0 20px 40px rgba(109, 40, 217, 0.25);
}

.skm-game-result-card.upcoming {
    background: linear-gradient(145deg, #1f2937, #111827);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skm-game-result-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.skm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.skm-card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.skm-card-status-badge.live {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}
.skm-card-status-badge.upcoming {
    background: rgba(22, 163, 74, 0.2);
    color: #4ade80;
}

.skm-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.skm-card-city {
    text-align: center;
    margin-bottom: 1.5rem;
}

.skm-card-city h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.skm-card-city .skm-game-timing {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.skm-card-result-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.skm-card-result {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 900;
    position: relative;
}

.skm-card-result.live {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.skm-card-result.upcoming {
    background: linear-gradient(145deg, #f97316, #ef4444);
}

.skm-card-countdown {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skm-card-countdown .skm-next-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.skm-card-countdown .skm-next-time {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* DETAILED RESULTS TABLE - Dark Blue Design */
.skm-traditional-results {
    margin-bottom: 4rem;
}

.skm-history-simple-header {
    text-align: center;
    margin-bottom: 30px;
}

.skm-history-simple-header h2 {
    font-size: 2.2em;
    color: var(--skm-text-light);
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.skm-simple-table-card {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    border: 2px solid #3182ce;
    transition: all 0.3s ease;
}

.skm-simple-table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border-color: #4299e1;
}

.skm-simple-table-wrapper {
    overflow-x: auto;
}

.skm-simple-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.skm-simple-table thead tr {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-bottom: 3px solid #4299e1;
}

.skm-simple-table th {
    padding: 20px 25px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1em;
    border-right: 1px solid #4a5568;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.skm-simple-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.skm-simple-table th:last-child {
    border-right: none;
}

.skm-simple-table tbody tr {
    border-bottom: 1px solid #3182ce;
    transition: background-color 0.3s ease;
}

.skm-simple-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.skm-simple-table tbody tr:last-child {
    border-bottom: none;
}

.skm-simple-table tbody tr:hover {
    background: #3182ce;
}

.skm-simple-table td {
    padding: 20px 25px;
    text-align: center;
    color: white;
    font-weight: 500;
    border-right: 1px solid #4a5568;
}
.skm-simple-table td:last-child {
    border-right: none;
}


.skm-simple-table .skm-game-name {
    text-align: left;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1em;
}

.skm-simple-table .skm-result-col .skm-result-number {
    color: #00d4aa;
    font-weight: 800;
    font-size: 1.8em;
    text-shadow: 0 2px 4px rgba(0, 212, 170, 0.3);
}

.skm-simple-table .skm-result-col .skm-result-pending {
    color: #a0aec0;
    font-weight: 600;
    font-size: 1.2em;
}

.skm-simple-table .skm-next-draw-col {
    color: #a0aec0;
    font-family: 'Courier New', monospace;
}

.skm-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skm-status-declared {
    background: #38a169;
    color: white;
}

.skm-status-pending {
    background: #ed8936;
    color: white;
}


/* Historical Results - White Card Style */
.skm-historical-results .skm-simple-table-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1300px;
    border: 3px solid #e0e0e0;
}

.skm-historical-results .skm-simple-table-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border-color: #3b4a98;
}

.skm-historical-results .skm-simple-header {
    background: linear-gradient(135deg, #3b4a98, #4a5bc2);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #2c3e50;
    position: relative;
}

.skm-historical-results .skm-simple-header::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.skm-historical-results .skm-table-icon {
    font-size: 1.8em;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.skm-historical-results .skm-simple-header h3 {
    color: white;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    flex: 1;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.skm-historical-results .skm-update-text {
    color: #e2fccf;
    font-size: 0.95em;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.skm-historical-results .skm-simple-table-wrapper {
    overflow-x: auto;
    background: white;
}

.skm-historical-results .skm-simple-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.skm-historical-results .skm-simple-table thead tr {
    background: #f8f9fa;
}

.skm-historical-results .skm-simple-table th {
    padding: 15px;
    text-align: center;
    color: #495057;
    font-weight: 700;
    font-size: 1em;
    border: 1px solid #dee2e6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.skm-historical-results .skm-date-header {
    text-align: left !important;
    padding-left: 25px !important;
    background: #e9ecef !important;
    min-width: 200px;
}

.skm-historical-results .skm-simple-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.skm-historical-results .skm-simple-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.skm-historical-results .skm-simple-table tbody tr:hover {
    background: #e3f2fd;
}

.skm-historical-results .skm-recent {
    background: #fff5f5 !important;
    border-left: 4px solid #ff6b6b !important;
}

.skm-historical-results .skm-date-col {
    padding: 15px 25px;
    text-align: left;
    border: 1px solid #dee2e6;
    min-width: 200px;
    font-weight: 700;
}

.skm-historical-results .skm-date-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skm-historical-results .skm-day-name {
    color: #2c3e50;
    font-weight: 800;
    font-size: 1.1em;
}

.skm-historical-results .skm-day-date {
    color: #6c757d;
    font-size: 0.9em;
}

.skm-historical-results .skm-number-col {
    padding: 15px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2em;
    border: 1px solid #dee2e6;
}

/* Game Description */
.skm-game-description {
    margin: 4rem 0;
    text-align: center;
}

.skm-game-description h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--skm-primary-color), var(--skm-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skm-description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.skm-description-card {
    background: linear-gradient(135deg, var(--skm-darker-bg), var(--skm-accent));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--skm-border-color);
}

.skm-description-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--skm-primary-color);
}

.skm-description-card p, .skm-description-card ol {
    color: var(--skm-text-light);
    line-height: 1.8;
}

.skm-description-card ol {
    padding-left: 1.5rem;
}

.skm-description-card li {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.skm-faq-section {
    margin: 4rem 0;
}

.skm-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skm-faq-item {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    border-radius: 15px;
    border: 2px solid #3182ce;
    overflow: hidden;
    transition: all 0.4s ease;
}
.skm-faq-item.active {
    border-color: #4299e1;
}

.skm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--skm-text-light);
}

.skm-faq-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}
.skm-faq-item.active .skm-faq-arrow {
    transform: rotate(180deg);
}

.skm-faq-answer {
    padding: 0 25px;
    background: #2c5282;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.skm-faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    line-height: 1.7;
}

/* Disclaimer Section */
.skm-disclaimer {
    margin: 4rem 0;
}

.skm-disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.skm-disclaimer-card {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--skm-warning);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: var(--skm-text-muted);
}

/* Footer */
.skm-footer-pro {
    background: linear-gradient(135deg, #000, #16213e);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--skm-border-color);
}

.skm-footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.skm-footer-brand h3 {
    font-size: 1.8rem;
    color: var(--skm-primary-color);
    margin-bottom: 0.5rem;
}

.skm-footer-brand p {
    color: var(--skm-text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.skm-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--skm-border-color);
}

.skm-footer-bottom p {
    color: var(--skm-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .skm-professional-container {
        padding: 0 15px;
    }
    
    .skm-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .skm-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .skm-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .skm-hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .skm-status-cards {
        grid-template-columns: 1fr;
    }
    
    .skm-description-grid {
        grid-template-columns: 1fr;
    }
    
    .skm-simple-table {
        font-size: 0.9em;
        min-width: 800px;
    }
}

@media (max-width: 480px) {
    .skm-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .skm-hero-subtitle {
        font-size: 1rem;
    }
    
    .skm-live-clock, .skm-countdown {
        font-size: 2rem;
    }
    
    .skm-simple-table {
        font-size: 0.8em;
        min-width: 600px;
    }
}

/* Charts Section */
.skm-charts-section {
    margin: 4rem 0;
}

.skm-chart-container {
    background: linear-gradient(145deg, var(--skm-darker-bg), var(--skm-accent));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    max-width: 1200px;
    height: 500px;
    border: 1px solid var(--skm-border-color);
} 