/* Secret Pages Styles */

.back-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin: 20px;
    position: relative;
    z-index: 10;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.back-button:active {
    transform: translateY(0);
}

.secret-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.secret-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.secret-notification-content {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secret-notification-icon {
    font-size: 32px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.secret-notification-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.secret-notification-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Secret Page Styles */
.secret-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.secret-content {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.secret-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4caf50 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

.secret-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.secret-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.secret-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.secret-list-item {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.secret-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.secret-list-item.unlocked {
    border-left-color: #4caf50;
}

.secret-list-item.locked {
    border-left-color: #666;
    opacity: 0.6;
}

.secret-list-item-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.secret-list-item-hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.secret-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.secret-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secret-stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 5px;
}

.secret-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.secret-footer-link {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    z-index: 10;
}

.secret-footer-hint {
    transition: opacity 0.3s ease;
}

.footer:hover .secret-footer-hint {
    opacity: 0.3 !important;
}

.secret-styling-panel {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secret-styling-panel h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
}

.styling-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.styling-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.styling-control-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}

.styling-control-group input[type="color"] {
    width: 100%;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}

.styling-control-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.styling-control-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4caf50;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.styling-control-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4caf50;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.styling-control-group span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.styling-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.secret-action-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secret-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
}

.secret-action-btn:active {
    transform: translateY(0);
}

.secret-action-btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.secret-action-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.secret-actions {
    margin-top: 30px;
    text-align: center;
}

.no-secrets-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}


.dev-secrets-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.dev-secret-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dev-secret-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

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

.dev-secret-icon {
    font-size: 32px;
}

.dev-secret-header h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.dev-secret-details {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.dev-secret-details p {
    margin: 8px 0;
}

.dev-secret-details strong {
    color: #4caf50;
}

.dev-code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #4caf50;
    text-align: center;
    letter-spacing: 3px;
}

.dev-code-block code {
    background: transparent;
    color: inherit;
    font-size: inherit;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .secret-title {
        font-size: 32px;
    }
    
    .secret-subtitle {
        font-size: 18px;
    }
    
    .secret-text {
        font-size: 16px;
    }
    
    .secret-content {
        padding: 20px;
    }
    
    .styling-controls {
        grid-template-columns: 1fr;
    }
    
    .secrets-grid {
        grid-template-columns: 1fr;
    }
}

