/* 90s Retro ESPN Styling */

body {
    font-family: Arial, Helvetica, sans-serif !important;
    margin: 0;
    padding: 0;
}

/* Remove ALL rounded corners */
* {
    border-radius: 0 !important;
}

/* 90s Style Navigation */
.retro-nav {
    background: linear-gradient(to bottom, #4169E1 0%, #1E3A8A 100%);
    border-bottom: 4px solid #FFD700;
    padding: 8px 0;
}

.retro-nav-title {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.retro-nav-links {
    background: #2C5282;
    border: 3px solid #000;
    padding: 4px 12px;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
    margin: 0 4px;
    display: inline-block;
    border-style: outset;
}

.retro-nav-links:hover {
    background: #4299E1;
    border-style: inset;
}

/* Striped Tables */
.retro-table {
    border-collapse: collapse;
    width: 100%;
    border: 4px solid #000;
    background: #FFF;
}

.retro-table th {
    background: linear-gradient(to bottom, #FF6B35 0%, #D94B1D 100%);
    color: #FFF;
    padding: 12px 8px;
    border: 2px solid #000;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.retro-table td {
    padding: 8px;
    border: 1px solid #666;
    font-size: 13px;
}

.retro-table tr:nth-child(even) {
    background: #F0F0F0;
}

.retro-table tr:hover {
    background: #FFEB3B !important;
}

/* 90s Buttons */
.retro-button {
    background: linear-gradient(to bottom, #4CAF50 0%, #2E7D32 100%);
    color: #FFF;
    border: 3px solid #000;
    border-style: outset;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.retro-button:hover {
    background: linear-gradient(to bottom, #66BB6A 0%, #4CAF50 100%);
}

.retro-button:active {
    border-style: inset;
}

.retro-button-red {
    background: linear-gradient(to bottom, #F44336 0%, #C62828 100%);
}

.retro-button-blue {
    background: linear-gradient(to bottom, #2196F3 0%, #1565C0 100%);
}

.retro-button-orange {
    background: linear-gradient(to bottom, #FFA500 0%, #FF8C00 100%);
}

.retro-button-purple {
    background: linear-gradient(to bottom, #9C27B0 0%, #7B1FA2 100%);
}

/* Section Headers */
.retro-header {
    background: linear-gradient(to right, #FF6B35 0%, #FFA500 100%);
    color: #FFF;
    padding: 12px 16px;
    border: 3px solid #000;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

/* Content Boxes */
.retro-box {
    border: 4px solid #000;
    background: #FFF;
    padding: 16px;
    margin: 12px 0;
}

/* Correct/Incorrect Pick Indicators */
.pick-correct {
    background: #FFD700 !important;
    font-weight: bold;
}

.pick-incorrect {
    background: #CCC !important;
}

/* Win/Loss Indicators */
.money-win {
    color: #2E7D32;
    font-weight: bold;
}

.money-loss {
    color: #C62828;
    font-weight: bold;
}

/* Landing Page Styles */
.landing-section {
    border: 3px solid #000;
    background: #FFF;
    padding: 16px;
    margin: 12px;
}

.landing-link {
    color: #0000EE;
    text-decoration: underline;
    font-weight: bold;
}

.landing-link:visited {
    color: #551A8B;
}

.landing-link:hover {
    color: #FF0000;
}

/* Pot Display */
.pot-display {
    background: linear-gradient(to bottom, #4CAF50 0%, #2E7D32 100%);
    color: #FFD700;
    border: 4px solid #000;
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Form Elements */
.retro-input {
    border: 3px solid #000;
    padding: 8px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.retro-select {
    border: 3px solid #000;
    padding: 8px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    background: #FFF;
}

/* Game Cards */
.game-card {
    border: 4px solid #000;
    background: #FFF;
    padding: 16px;
    margin-bottom: 16px;
}

.spread-box {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(to bottom, #2196F3 0%, #1565C0 100%);
    border: 3px solid #000;
    color: #FFF;
    font-weight: bold;
}

/* Alert/Info Boxes */
.retro-alert-warning {
    background: #FFF3CD;
    border: 3px solid #FFA500;
    padding: 12px;
    font-weight: bold;
}

.retro-alert-info {
    background: #E3F2FD;
    border: 3px solid #2196F3;
    padding: 12px;
}

.retro-alert-success {
    background: #C8E6C9;
    border: 3px solid #4CAF50;
    padding: 12px;
}

.retro-alert-danger {
    background: #FFCDD2;
    border: 3px solid #F44336;
    padding: 12px;
}

/* Pick Buttons */
.pick-button {
    flex: 1;
    padding: 12px;
    border: 3px solid #000;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    background: #FFF;
    border-style: outset;
}

.pick-button:hover {
    background: #E3F2FD;
}

.pick-button-selected {
    background: linear-gradient(to bottom, #2196F3 0%, #1565C0 100%);
    color: #FFF;
    border-style: inset;
}

.pick-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Best Bet Button */
.best-bet-button {
    padding: 12px;
    width: 80px;
    border: 3px solid #000;
    font-weight: bold;
    cursor: pointer;
    background: #FFF;
    border-style: outset;
}

.best-bet-selected {
    background: linear-gradient(to bottom, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-style: inset;
}

/* Tiebreaker Section */
.tiebreaker-section {
    margin-top: 12px;
    padding: 12px;
    background: #E1BEE7;
    border: 3px solid #000;
}

/* Leaderboard Rankings */
.rank-1 {
    background: linear-gradient(to right, #FFD700 0%, #FFA500 100%);
    font-weight: bold;
}

.rank-2 {
    background: linear-gradient(to right, #C0C0C0 0%, #A0A0A0 100%);
    font-weight: bold;
}

.rank-3 {
    background: linear-gradient(to right, #CD7F32 0%, #B8860B 100%);
    font-weight: bold;
}
