/* Disclaimer CSS for Credit Put Spread Garage */
:root {
    --primary-color: #00ff41;
    --secondary-color: #ff6b35;
    --accent-color: #ffd23f;
    --background-dark: #0a0a0a;
    --background-medium: #1a1a1a;
    --background-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff4444;
    --disclaimer-red: #ff3333;
    --disclaimer-orange: #ff6600;
}

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

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 0;
}

/* Disclaimer Header */
.disclaimer-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-light) 100%);
    border: 3px solid var(--disclaimer-red);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.disclaimer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 51, 51, 0.1) 10px,
        rgba(255, 51, 51, 0.1) 20px
    );
    pointer-events: none;
}

.disclaimer-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--disclaimer-red);
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.disclaimer-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    position: relative;
    z-index: 1;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, var(--disclaimer-red) 0%, var(--disclaimer-orange) 100%);
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    animation: pulse 2s infinite;
}

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

.warning-box h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.warning-box p {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Disclaimer Content */
.disclaimer-content {
    flex: 1;
}

.disclaimer-section {
    background: var(--background-medium);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--disclaimer-red), var(--disclaimer-orange));
}

.disclaimer-section h3 {
    color: var(--disclaimer-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-section ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-section li {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.disclaimer-section li::before {
    content: '⚠️';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.disclaimer-section li strong {
    color: var(--disclaimer-red);
    font-weight: 700;
}

.disclaimer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.accept-button {
    background: linear-gradient(135deg, var(--disclaimer-red) 0%, var(--disclaimer-orange) 100%);
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.accept-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: left 0.5s;
}

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

.accept-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

.decline-button {
    background: var(--background-light);
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.decline-button:hover {
    background: var(--danger-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.reset-button {
    background: var(--text-muted);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 15px 20px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reset-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: left 0.5s ease;
}

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

.reset-button:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.3);
}

/* Footer Note */
.footer-note {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: auto;
}

.footer-note p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimer-container {
        padding: 1rem;
    }
    
    .disclaimer-header h1 {
        font-size: 2rem;
    }
    
    .disclaimer-header h2 {
        font-size: 1.5rem;
    }
    
    .warning-box h3 {
        font-size: 1.5rem;
    }
    
    .warning-box p {
        font-size: 1.1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .accept-button,
    .decline-button,
    .reset-button {
        width: 100%;
        margin: 10px 0;
        font-size: 12px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .disclaimer-header {
        padding: 1rem;
    }
    
    .disclaimer-header h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .disclaimer-header h2 {
        font-size: 1.2rem;
    }
    
    .disclaimer-section {
        padding: 1.5rem;
    }
    
    .disclaimer-section h3 {
        font-size: 1.3rem;
    }
    
    .warning-box {
        padding: 1.5rem;
    }
}
