* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #d32f2f 0%, #1b5e20 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
}

/* Christmas snowflakes */
.snowflake {
    position: fixed;
    top: -20px;
    color: #fff;
    font-size: 1.2em;
    animation: fall linear forwards;
    z-index: 1;
    user-select: none;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.main-banner {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #ffeb3b;
    margin-bottom: 10px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    color: #ffeb3b;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-nav {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    background: rgba(173, 20, 20, 0.2);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

nav a:hover {
    background: #d32f2f;
    color: #fff;
    border-color: #ffeb3b;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.btn-logout {
    background: #ff4757;
    color: white !important;
}

.btn-logout:hover {
    background: #ff3838;
}

.hero-section {
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section h2 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-section p {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: #ffeb3b;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
}

.additional-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.additional-info h2 {
    color: #ffeb3b;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 0 20px;
}

.stat h3 {
    color: #ffeb3b;
    font-size: 2em;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature-item h3 {
    color: #ffeb3b;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #a71a1a 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.hero-overlay .btn-primary {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
}

.hero-overlay .btn-primary:hover {
    background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
    transform: scale(1.05);
}

.btn-success {
    background: #2ecc71;
    color: white;
}

.btn-success:hover {
    background: #27ae60;
}

.btn-warning {
    background: #f39c12;
    color: white;
}

.btn-warning:hover {
    background: #e67e22;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    color: #764ba2;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.login-box button {
    width: 100%;
    margin-top: 10px;
}

.login-links {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.login-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-links a:hover {
    text-decoration: underline;
}

.bot-panel {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bot-panel h2 {
    color: #764ba2;
    margin-bottom: 30px;
    text-align: center;
}

.credentials-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.cred-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.cred-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cred-item label {
    display: block;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.cred-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cred-value span {
    font-family: 'Courier New', monospace;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
    flex: 1;
}

.btn-copy {
    padding: 8px 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #5568d3;
}

.status-active {
    color: #2ecc71;
    font-weight: 700;
}

.bot-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.bot-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.bot-info h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.bot-info ul {
    list-style: none;
}

.bot-info li {
    padding: 8px 0;
    color: #333;
    font-size: 1em;
}

.dashboard {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.welcome-section {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-section h2 {
    color: #764ba2;
    margin-bottom: 10px;
}

.welcome-section p {
    color: #666;
    font-size: 1.1em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 0.9em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-value {
    font-size: 1.8em;
    font-weight: 700;
}

.quick-access {
    margin-bottom: 30px;
}

.quick-access h3 {
    color: #764ba2;
    margin-bottom: 20px;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.quick-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-5px);
}

.quick-btn span {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.quick-btn p {
    margin: 0;
    font-weight: 600;
}

.activity-log h3 {
    color: #764ba2;
    margin-bottom: 20px;
}

.log-entries {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.log-entry {
    padding: 12px;
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.log-entry:last-child {
    margin-bottom: 0;
}

.log-time {
    color: #667eea;
    font-weight: 600;
    min-width: 60px;
}

.log-message {
    color: #333;
}

footer {
    background: rgba(255, 235, 59, 0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #ffeb3b;
    margin-top: 30px;
    border-top: 2px solid rgba(255, 235, 59, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.redeem-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.redeem-section h2 {
    color: #ffeb3b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.redeem-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.redeem-form {
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.redeem-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.redeem-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.redeem-form input,
.redeem-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border 0.3s;
}

.redeem-form input:focus,
.redeem-form select:focus {
    outline: none;
    border-color: #ff9800;
}

.redeem-form .btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1em;
}

.redeem-info {
    background: #fff3e0;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
}

.redeem-info h3 {
    color: #ff9800;
    margin-bottom: 15px;
    text-align: center;
}

.redeem-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.redeem-info li {
    padding: 10px;
    margin: 8px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 500;
}

.redeem-info li:before {
    content: "⭐";
    margin-right: 10px;
}

/* 5-Step Verification System */
.verification-steps {
    margin: 30px 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ddd;
    z-index: 1;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step.active {
    background: #ff9800;
    color: white;
    transform: scale(1.1);
}

.step.completed {
    background: #4caf50;
    color: white;
}

.verification-step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.5s;
}

.verification-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.verification-step h3 {
    color: #ff9800;
    margin-bottom: 15px;
    text-align: center;
}

.verification-step p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.timer {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff9800;
    margin-top: 15px;
    padding: 10px;
    background: #fff3e0;
    border-radius: 8px;
    display: none;
}

.timer.active {
    display: block;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.server-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.security-question {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.security-question p {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.btn-option {
    padding: 15px;
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-option:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
}

.btn-option.correct {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.btn-option.incorrect {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.security-status {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.security-status.correct {
    background: #e8f5e8;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.security-status.incorrect {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #f44336;
}

.code-generation {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    width: 0%;
    transition: width 0.1s;
    border-radius: 10px;
}

.generated-code {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: #1976d2;
    border: 2px dashed #2196f3;
}

.final-review {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.final-review h4 {
    color: #ff9800;
    margin-bottom: 15px;
    text-align: center;
}

.final-review p {
    margin: 10px 0;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.success-message h3 {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reward-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.reward-display p {
    font-size: 1.3em;
    margin: 15px 0;
    font-weight: bold;
}

.reward-display span {
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
}

.btn:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    background: #bdbdbd;
    transform: none;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    .hero-section h2 {
        font-size: 1.8em;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bot-controls {
        flex-direction: column;
    }
    
    .bot-controls .btn {
        width: 100%;
    }
    
    /* Additional mobile responsive styles */
    .main-banner {
        max-width: 100%;
        height: auto;
    }
    
    .hero-overlay {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .container {
        padding: 10px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        padding: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-info {
        padding: 20px;
    }
    
    .login-box {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .bot-panel {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .dashboard {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .credentials-card {
        padding: 20px;
    }
    
    .cred-value {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-copy {
        align-self: flex-start;
    }
    
    .quick-access h3 {
        font-size: 1.2em;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .login-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .login-links a {
        display: block;
        text-align: center;
    }
    
    .cred-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .bot-info ul {
        padding-left: 20px;
    }
    
    .bot-info li {
        padding: 5px 0;
    }
    
    .activity-log {
        padding: 15px;
    }
    
    .log-entries {
        max-height: 200px;
    }
    
    .log-entry {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .log-time {
        min-width: auto;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Alternative 5-Step Verification System */
.verification-steps-alt {
    margin: 30px 0;
}

.step-indicator-alt {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator-alt:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ddd;
    z-index: 1;
}

.step-alt {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step-alt.active {
    background: #9c27b0;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

.step-alt.completed {
    background: #4caf50;
    color: white;
}

.verification-step-alt {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: none;
    animation: fadeInAlt 0.5s;
    border: 2px solid #9c27b0;
}

.verification-step-alt.active {
    display: block;
}

@keyframes fadeInAlt {
    from { opacity: 0; transform: translateY(20px) rotate(1deg); }
    to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.verification-step-alt h3 {
    color: #9c27b0;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4em;
}

.timer-alt {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #9c27b0;
    margin-top: 15px;
    padding: 10px;
    background: #f3e5f5;
    border-radius: 8px;
    display: none;
    border: 2px dashed #9c27b0;
}

.timer-alt.active {
    display: block;
    animation: pulseAlt 1s infinite;
}

@keyframes pulseAlt {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(156, 39, 176, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(156, 39, 176, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(156, 39, 176, 0.3); }
}

.level-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #9c27b0;
}

.stats-input {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stats-validation {
    background: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
    border: 2px dashed #ff9800;
}

.stats-validation.valid {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.premium-generation {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #9c27b0;
}

.complexity-meter {
    margin-bottom: 20px;
    text-align: center;
}

.complexity-meter p {
    font-weight: bold;
    color: #9c27b0;
    margin-bottom: 10px;
}

.complexity-bar {
    width: 100%;
    height: 15px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.complexity-progress {
    height: 100%;
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    width: 0%;
    transition: width 0.1s;
    border-radius: 8px;
}

.encryption-status {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    font-weight: 500;
    border: 1px solid #2196f3;
}

.premium-code-display {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px dashed white;
}

.elite-review {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #9c27b0;
}

.elite-review h4 {
    color: #9c27b0;
    margin-bottom: 15px;
    text-align: center;
}

.elite-review p {
    margin: 10px 0;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: 500;
}

.elite-badge {
    background: linear-gradient(135deg, #ffd700, #ffa000);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #9c27b0;
    border: 3px solid #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.elite-badge-final {
    background: linear-gradient(135deg, #ffd700, #ffa000);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #9c27b0;
    border: 2px solid #9c27b0;
    display: inline-block;
}

.success-message-alt {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(156, 39, 176, 0.4);
    border: 3px solid #ffd700;
}

.success-message-alt h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffd700;
}

.elite-reward-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px dashed #ffd700;
}

.elite-reward-display p {
    font-size: 1.3em;
    margin: 15px 0;
    font-weight: bold;
}

.elite-reward-display span {
    background: rgba(255, 215, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Play Store Style Redeem Generator */
.play-store-interface {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.play-store-header {
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.play-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-icon {
    font-size: 2em;
}

.play-text {
    font-size: 1.5em;
    font-weight: bold;
}

.account-info {
    font-size: 0.9em;
    opacity: 0.9;
}

.play-nav {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.nav-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    border-right: 1px solid #e0e0e0;
}

.nav-item:hover {
    background: #e8f0fe;
}

.nav-item.active {
    background: #4285f4;
    color: white;
}

.play-content {
    padding: 30px;
}

.step-indicator-play {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator-play:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.step-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.step-play.active {
    background: #4285f4;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.5);
}

.step-play.completed {
    background: #34a853;
    color: white;
}

.play-step {
    display: none;
    animation: fadeInPlay 0.5s;
}

.play-step.active {
    display: block;
}

@keyframes fadeInPlay {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.play-step h3 {
    color: #4285f4;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4em;
}

.timer-play {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #4285f4;
    margin-top: 15px;
    padding: 10px;
    background: #e8f0fe;
    border-radius: 8px;
    display: none;
    border: 2px dashed #4285f4;
}

.timer-play.active {
    display: block;
    animation: pulsePlay 1s infinite;
}

@keyframes pulsePlay {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(66, 133, 244, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(66, 133, 244, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(66, 133, 244, 0.3); }
}

.country-info {
    background: #f1f8e9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid #4caf50;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.payment-option {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.payment-option:hover {
    background: #e8f0fe;
    transform: translateY(-3px);
}

.payment-option.selected {
    background: #e8f0fe;
    border-color: #4285f4;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.payment-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.payment-text {
    font-weight: 500;
    color: #333;
}

.payment-status {
    background: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
    border: 2px dashed #ff9800;
}

.payment-status.verified {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.code-generation-play {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.play-store-animation {
    margin-bottom: 20px;
}

.play-bubbles {
    position: relative;
    height: 60px;
    margin-bottom: 15px;
}

.bubble {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4285f4;
    border-radius: 50%;
    animation: bubbleFloat 3s infinite ease-in-out;
}

.bubble:nth-child(1) { left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { left: 40%; animation-delay: 0.5s; }
.bubble:nth-child(3) { left: 60%; animation-delay: 1s; }
.bubble:nth-child(4) { left: 80%; animation-delay: 1.5s; }

@keyframes bubbleFloat {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-40px); opacity: 0; }
}

.progress-bar-play {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-play {
    height: 100%;
    background: linear-gradient(90deg, #4285f4, #34a853);
    width: 0%;
    transition: width 0.1s;
    border-radius: 6px;
}

.generated-play-code {
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px dashed white;
}

.redemption-summary {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #4285f4;
}

.redemption-summary h4 {
    color: #4285f4;
    margin-bottom: 15px;
    text-align: center;
}

.redemption-summary p {
    margin: 10px 0;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: 500;
}

.play-store-badge {
    background: linear-gradient(135deg, #ffd700, #ffa000);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #4285f4;
    border: 3px solid #4285f4;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.success-message-play {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.4);
    border: 3px solid #ffd700;
}

.play-success-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.play-success-icon {
    font-size: 2.5em;
}

.success-message-play h3 {
    font-size: 2em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffd700;
}

.play-reward-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px dashed #ffd700;
}

.play-reward-display p {
    font-size: 1.3em;
    margin: 15px 0;
    font-weight: bold;
}

.play-reward-display span {
    background: rgba(255, 215, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.digital-badge {
    background: linear-gradient(135deg, #ffd700, #ffa000);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #4285f4;
    border: 2px solid #4285f4;
    display: inline-block;
}

/* Verification Cards on Home Page */
.verification-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #5a67d8;
    transform: scale(1.02);
}

.verification-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.verification-card h3 {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
