/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0e17;
    color: #ffffff;
    overflow-x: hidden;
}

/* LANDING PAGE STYLES */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.coin, .diamond {
    position: absolute;
    background: radial-gradient(circle, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.coin {
    width: 40px;
    height: 40px;
}

.diamond {
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    background: radial-gradient(circle, #00ffff 0%, #0088ff 100%);
}

.coin-1 { top: 10%; left: 5%; animation-delay: 0s; }
.coin-2 { top: 60%; right: 10%; animation-delay: 5s; }
.coin-3 { bottom: 20%; left: 15%; animation-delay: 10s; }
.diamond-1 { top: 30%; right: 20%; animation-delay: 3s; }
.diamond-2 { bottom: 40%; left: 25%; animation-delay: 8s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.landing-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.logo h1 {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.logo h1 span {
    color: #00ffff;
    -webkit-text-fill-color: #00ffff;
}

.tagline {
    font-size: 18px;
    color: #a0aec0;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Mascot */
.mascot-container {
    margin: 40px 0;
    position: relative;
}

.mascot {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.mascot-body {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.mascot-head {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.mascot-eyes {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: 25px;
}

.eye {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}

.eye::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #0a0e17;
    border-radius: 50%;
}

.mascot-smile {
    width: 40px;
    height: 20px;
    border: 3px solid #fff;
    border-top: none;
    border-radius: 0 0 40px 40px;
    margin: 15px auto 0;
}

.mascot-coin {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    animation: coin-spin 3s infinite linear;
}

@keyframes coin-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mascot-speech {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mascot-speech p {
    font-size: 18px;
    color: #00ffff;
    font-style: italic;
}

/* Input Section */
.input-section {
    margin: 40px 0;
}

.input-card {
    background: rgba(30, 35, 48, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.input-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.input-header i {
    font-size: 32px;
    color: #00ffff;
}

.input-header h2 {
    font-size: 24px;
    color: #fff;
}

.input-group {
    margin-bottom: 30px;
}

.input-with-icon {
    position: relative;
    margin-bottom: 15px;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b00;
    font-size: 20px;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 20px 18px 60px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    color: #fff;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
    font-size: 14px;
    padding: 10px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
}

/* Game Info */
.game-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.game-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #00ffff;
}

.game-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.game-provider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.provider-logo {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.provider-logo.pragmatic {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
}

.provider-logo.pgsoft {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
}

.game-count {
    font-size: 12px;
    color: #a0aec0;
}

/* Generate Button */
.generate-button {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.generate-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.4);
}

.generate-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.generate-button:hover::before {
    left: 100%;
}

.button-icon {
    font-size: 32px;
}

.button-text {
    font-size: 24px;
}

.button-subtext {
    font-size: 14px;
    opacity: 0.9;
}

/* Stats Preview */
.stats-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b00;
}

.stat-label {
    font-size: 12px;
    color: #a0aec0;
}

/* Landing Footer */
.landing-footer {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.landing-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #ffa500;
}

/* RESULTS PAGE STYLES */
.results-page {
    background: #0a0e17;
    min-height: 100vh;
}

.results-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.back-button:hover {
    background: rgba(255, 107, 0, 0.2);
}

.user-welcome h1 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.username-highlight {
    color: #ff6b00;
    font-weight: 700;
}

.generation-time {
    color: #a0aec0;
    font-size: 14px;
    margin-top: 5px;
}

.generation-time i {
    color: #00ffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b00;
}

.logo-mini span:first-child {
    font-size: 24px;
}

.session-id {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.session-id i {
    color: #00b4d8;
}

/* Stats Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(30, 35, 48, 0.8);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.success {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.stat-icon.gacor {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
}

.stat-icon.time {
    background: linear-gradient(135deg, #0984e3, #00b4d8);
}

.stat-icon.refresh {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.stat-content h3 {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.stat-sub {
    font-size: 12px;
    color: #718096;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 25px;
    margin-bottom: 40px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Section Cards */
.section-card {
    background: rgba(30, 35, 48, 0.8);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header i {
    font-size: 24px;
    color: #ff6b00;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: auto;
}

.badge.hot {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
}

.badge.live {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
}

/* Game Section */
.game-card.main-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.game-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.game-rating, .game-volatility {
    font-size: 12px;
    font-weight: 600;
}

.game-rating {
    color: #ffd700;
}

.game-volatility {
    color: #00ffff;
}

.game-details h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.game-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-value {
    font-weight: 600;
}

.info-value.highlight {
    color: #00ff00;
}

.gacor-status {
    color: #ff6b00;
    font-weight: 700;
}

/* Alternative Games */
.alternative-games {
    margin-top: 25px;
}

.alternative-games h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 16px;
}

.alt-game-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alt-game-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.alt-game-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.05);
}

.alt-game-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.alt-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-game-info h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.alt-game-info p {
    font-size: 12px;
    color: #a0aec0;
}

.alt-game-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active {
    background: #00ff00;
}

.status-dot.warning {
    background: #ffa500;
}

/* Deposit Section */
.deposit-strategy {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.deposit-recommendation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.deposit-amount {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.deposit-amount h3 {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 15px;
}

.amount-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    color: #ff6b00;
}

.amount {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.deposit-note {
    font-size: 12px;
    color: #a0aec0;
}

.deposit-note span {
    color: #00ffff;
    font-weight: 600;
}

.deposit-breakdown {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.deposit-breakdown h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 14px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-label {
    color: #a0aec0;
}

.breakdown-value {
    font-weight: 600;
    color: #fff;
}

.deposit-tips ul {
    list-style: none;
    padding-left: 0;
}

.deposit-tips li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #a0aec0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.deposit-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-size: 20px;
}

/* Pattern Section */
.mode-selector {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.mode-btn {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #a0aec0;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.mode-btn.active {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
    border-color: transparent;
}

.pattern-display {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pattern-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.pattern-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pattern-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.pattern-type {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pattern-success {
    font-size: 14px;
    font-weight: 600;
    color: #00ff00;
}

.pattern-details h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.pattern-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pattern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pattern-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0984e3, #00b4d8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: #a0aec0;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Betting Section */
.betting-strategy {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.betting-plan {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.betting-phase {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.betting-phase h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 14px;
}

.phase-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.phase-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.phase-item span {
    font-size: 12px;
    color: #a0aec0;
}

.phase-item strong {
    font-size: 14px;
    color: #fff;
}

.betting-chart h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 14px;
}

.chart-container {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    height: 200px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: #a0aec0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 15px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #ff6b00, #ffa500);
    border-radius: 8px 8px 0 0;
    position: relative;
    min-height: 20px;
}

.chart-bar::after {
    content: attr(data-bet);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Meter Section */
.meter-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.meter-main {
    display: flex;
    justify-content: center;
}

.meter-circle {
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        #00ff00 0% 92%,
        rgba(255, 255, 255, 0.1) 92% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-fill {
    position: absolute;
    width: 170px;
    height: 170px;
    background: #0a0e17;
    border-radius: 50%;
}

.meter-center {
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(30, 35, 48, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.meter-value {
    font-size: 36px;
    font-weight: 800;
    color: #00ff00;
}

.meter-label {
    font-size: 14px;
    color: #a0aec0;
    margin-top: 5px;
}

.meter-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meter-info h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.server-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.status-label {
    color: #a0aec0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.indicator-dot.green {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.indicator-dot.yellow {
    background: #ffa500;
    box-shadow: 0 0 10px #ffa500;
}

.meter-timeline h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timeline-item.active .time {
    color: #ff6b00;
    font-weight: 700;
}

.time {
    font-size: 12px;
    color: #a0aec0;
}

.line {
    width: 8px;
    border-radius: 4px;
}

.line.high {
    height: 80px;
    background: linear-gradient(to top, #00ff00, #00b894);
}

.line.medium {
    height: 50px;
    background: linear-gradient(to top, #ffa500, #ff6b00);
}

.line.low {
    height: 30px;
    background: linear-gradient(to top, #ff6b6b, #ff4757);
}

.level {
    font-size: 12px;
    font-weight: 600;
}

/* Timing Section */
.timing-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.best-time h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 16px;
}

.time-slot {
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 116, 217, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.time-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.time-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.time-range {
    display: flex;
    flex-direction: column;
}

.time-range strong {
    font-size: 24px;
    color: #fff;
}

.time-range span {
    font-size: 14px;
    color: #a0aec0;
}

.time-reason {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-reason p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #a0aec0;
}

.time-reason i {
    color: #00ff00;
}

.avoid-time h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ff6b6b;
    font-size: 14px;
}

.avoid-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avoid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.avoid-time {
    font-weight: 600;
    color: #ff6b6b;
}

.avoid-reason {
    font-size: 12px;
    color: #a0aec0;
}

.next-refresh h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #00ffff;
    font-size: 14px;
}

.refresh-timer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.timer-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00b4d8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.timer-minutes {
    font-size: 24px;
    font-weight: 700;
    color: #00ffff;
}

.timer-label {
    font-size: 12px;
    color: #a0aec0;
}

.refresh-timer p {
    font-size: 12px;
    color: #a0aec0;
}

/* Action Section */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn i {
    font-size: 20px;
}

.print-btn {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
}

.save-btn {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
}

.refresh-btn {
    background: linear-gradient(135deg, #0984e3, #00b4d8);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Results Footer */
.results-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    padding: 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.disclaimer {
    margin-bottom: 15px;
}

.disclaimer p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffa500;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer i {
    margin-top: 3px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #a0aec0;
}

.footer-info strong {
    color: #ff6b00;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-card.main-game,
    .deposit-recommendation,
    .betting-strategy,
    .meter-display {
        grid-template-columns: 1fr;
    }
    
    .phase-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-left, .header-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 48px;
    }
    
    .game-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}