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

body {
    font-family: 'Share Tech Mono', 'Roboto', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -2;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    animation: matrixPulse 6s ease-in-out infinite alternate;
}

@keyframes matrixPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 0, 0.03) 50%,
        transparent 100%
    );
    animation: glitchSweep 3s ease-in-out infinite;
}

@keyframes glitchSweep {
    0%, 90%, 100% { opacity: 0; }
    5%, 85% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    color: #e0e0e0;
    border: 2px solid #00bfff;
    background: rgba(10, 10, 26, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3), 0 0 60px rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(0, 191, 255, 0.3);
    position: relative;
}

.header-top {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    padding: 0 20px;
}

.user-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
}

#current-username {
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    font-weight: bold;
}

.logout-btn {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6464;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.logout-btn:hover {
    background: rgba(255, 100, 100, 0.2);
    box-shadow: 0 0 8px rgba(255, 100, 100, 0.4);
    opacity: 1;
}

/* Fixed Logout Button */
.logout-btn-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(220, 53, 69, 0.9);
    border: 2px solid #dc3545;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.logout-btn-fixed:hover {
    background: rgba(220, 53, 69, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.language-toggle {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #00bfff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 191, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.lang-btn.active {
    background: rgba(0, 191, 255, 0.3);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.logo i {
    font-size: 3rem;
    color: #00bfff;
    text-shadow: 0 0 20px #00bfff, 0 0 40px #8a2be2;
    animation: gemPulse 3s infinite;
}

@keyframes gemPulse {
    0%, 100% { 
        color: #00bfff;
        text-shadow: 0 0 20px #00bfff, 0 0 40px #8a2be2;
    }
    50% { 
        color: #ff1493;
        text-shadow: 0 0 20px #ff1493, 0 0 40px #00bfff;
    }
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00bfff, #8a2be2, #ff1493);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.version-tag {
    position: absolute;
    top: -10px;
    right: -20px;
    background: linear-gradient(45deg, #00bfff, #8a2be2);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
}

/* Subscription Status */
.subscription-status {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    border-radius: 5px;
}

.subscription-status .status-value {
    color: #ffd700;
    font-weight: bold;
    font-size: 0.9em;
}

/* Low Confidence Warning */
.low-confidence-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid #ffa500;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    color: #ffa500;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
}

.low-confidence-warning i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.system-status {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.status-label {
    color: rgba(0, 191, 255, 0.8);
}

.status-value {
    color: #00ff00;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
}

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

.prediction-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.prediction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #003300, #00ff00);
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.card-header h2 {
    font-size: 1.5rem;
    color: #00ff00;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.card-header i {
    color: #00ff00;
    animation: pulse 2s infinite;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #00ff00;
}

.game-selector {
    margin-bottom: 30px;
}

.game-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 5px #00ff00;
}

#game-select {
    width: calc(100% - 200px);
    padding: 15px;
    border: 2px solid #00ff00;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s ease;
    margin-right: 15px;
    display: inline-block;
}

#game-select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    background: rgba(0, 255, 0, 0.1);
}

#game-select option {
    background: #000;
    color: #00ff00;
}

@media (max-width: 768px) {
    #game-select {
        width: 100%;
    }
}

.prediction-controls {
    text-align: center;
    margin-bottom: 30px;
}

.predict-button {
    background: linear-gradient(45deg, #001100, #003300);
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.predict-button:hover {
    background: linear-gradient(45deg, #003300, #005500);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.predict-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.predict-button:hover::before {
    left: 100%;
}

.prediction-result {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.result-header {
    margin-bottom: 25px;
}

.result-header h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 5px #00ff00;
}

.confidence-meter {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-family: 'Share Tech Mono', monospace;
}

.confidence-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #003300, #00ff00);
    width: 0%;
    transition: width 1s ease;
    box-shadow: 0 0 10px #00ff00;
}

.prediction-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.prediction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.prediction-item i {
    color: #00ff00;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ff00;
}

.prediction-item .label {
    font-weight: 500;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
}

.prediction-item .value {
    margin-left: auto;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.recommendation {
    background: linear-gradient(135deg, #001100, #003300);
    color: #00ff00;
    padding: 20px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.recommendation h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 5px #00ff00;
}

.loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 0, 0.3);
    border-top: 4px solid #00ff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hack-lines {
    margin-top: 20px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hack-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: typewriter 0.5s ease-in-out forwards;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.hack-line:nth-child(1) { animation-delay: 0.5s; }
.hack-line:nth-child(2) { animation-delay: 1s; }
.hack-line:nth-child(3) { animation-delay: 1.5s; }
.hack-line:nth-child(4) { animation-delay: 2s; }

@keyframes typewriter {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hack-line::before {
    content: '> ';
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border: 2px solid #00ff00;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card i {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #00ff00;
    animation: pulse 3s infinite;
}

.feature-card h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 5px #00ff00;
}

.feature-card p {
    color: rgba(0, 255, 0, 0.8);
    line-height: 1.6;
}

footer {
    text-align: center;
    color: #00ff00;
    opacity: 0.8;
    border-top: 1px solid #00ff00;
    padding-top: 20px;
    font-family: 'Share Tech Mono', monospace;
}

footer p {
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(0, 255, 0, 0.6);
}

/* Matrix rain effect */
.matrix-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
    animation: matrixScroll 20s linear infinite;
}

@keyframes matrixScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

/* Testimonials Section */
.testimonials-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00bfff;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 15px;
    color: #ff1493;
    text-shadow: 0 0 15px #ff1493;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00bfff, #8a2be2, transparent);
    transition: left 0.5s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
    border-color: rgba(0, 191, 255, 0.6);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00bfff, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.user-info {
    flex: 1;
}

.user-info h4 {
    margin: 0;
    color: #e0e6ff;
    font-size: 1.1rem;
    font-weight: 600;
}

.user-level {
    color: #00bfff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    font-size: 0.9rem;
}

.testimonial-text {
    color: #c0c6dd;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(0, 191, 255, 0.1);
    color: #00bfff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 191, 255, 0.3);
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

/* Developer Contact */
.developer-contact {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.developer-contact p {
    margin: 0;
    color: #00bfff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.developer-contact i {
    margin-right: 10px;
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
}

/* Subscription Section */
.subscription-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.subscription-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscription-card.popular {
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
    transform: scale(1.05);
}

.subscription-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.4);
    border-color: rgba(0, 191, 255, 0.6);
}

.subscription-card.popular:hover {
    transform: translateY(-10px) scale(1.07);
}

.subscription-card h3 {
    color: #00bfff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

.subscription-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff1493;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

.subscription-card p {
    color: #c0c6dd;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff1493, #8a2be2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

.contact-dev {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.contact-dev p {
    margin: 0;
    color: #00bfff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.contact-dev i {
    margin-right: 10px;
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
}

.developer-info {
    text-align: center;
    color: #00bfff;
    font-size: 1rem;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.developer-info i {
    margin-right: 8px;
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .prediction-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .prediction-details {
        grid-template-columns: 1fr;
    }
    
    .confidence-meter {
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .system-status {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-card.popular {
        transform: none;
    }
    
    .subscription-card:hover {
        transform: translateY(-5px);
    }
    
    .subscription-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Game Analysis Page Styles */
.game-analysis-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.game-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.game-header h2 {
    color: #00bfff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.game-provider, .game-volatility, .game-rtp {
    background: rgba(0, 191, 255, 0.1);
    color: #00bfff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(0, 191, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.game-stats-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.game-stats-card h3 {
    color: #8a2be2;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

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

.stat-value {
    color: #8a2be2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.recommendation-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

.recommendation-card h3 {
    color: #ff1493;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

.recommendation-content {
    color: #e0e6ff;
    line-height: 1.6;
}

.recommendation-strong {
    color: #00ff00;
    border-left: 4px solid #00ff00;
    padding-left: 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    padding: 15px;
}

.recommendation-moderate {
    color: #ffa500;
    border-left: 4px solid #ffa500;
    padding-left: 15px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 5px;
    padding: 15px;
}

.recommendation-weak {
    color: #ff4444;
    border-left: 4px solid #ff4444;
    padding-left: 15px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 5px;
    padding: 15px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.analyze-btn, .back-btn {
    background: linear-gradient(45deg, #00bfff, #8a2be2);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analyze-btn:hover, .back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 191, 255, 0.5);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.back-btn {
    background: linear-gradient(45deg, #666, #999);
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
}

.back-btn:hover {
    box-shadow: 0 5px 25px rgba(102, 102, 102, 0.5);
}

@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .game-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .analyze-btn, .back-btn {
        width: 200px;
    }
}