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

:root {
    --shane-color: #3498db;
    --ilya-color: #e74c3c;
    --dark-bg: #1a1a2e;
    --light-bg: #16213e;
    --text-light: #eee;
    --text-gold: #f39c12;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--text-gold);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--shane-color), var(--text-gold), var(--ilya-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-gold);
    font-style: italic;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-gold);
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: var(--text-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--text-gold);
    color: var(--dark-bg);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.rivalry-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--text-gold);
}

.rivalry-intro p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.vs-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.competitor {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
}

.competitor.shane {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.05));
    border: 2px solid var(--shane-color);
}

.competitor.ilya {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05));
    border: 2px solid var(--ilya-color);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    border: 3px solid currentColor;
}

.shane .avatar {
    background: var(--shane-color);
    color: white;
}

.ilya .avatar {
    background: var(--ilya-color);
    color: white;
}

.vs {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-gold);
    text-shadow: 0 0 20px var(--text-gold);
}

.nickname {
    font-style: italic;
    color: var(--text-gold);
    margin-top: 0.5rem;
}

.profile {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid;
}

.shane-profile {
    border-color: var(--shane-color);
}

.ilya-profile {
    border-color: var(--ilya-color);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--text-gold);
}

.avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    border: 3px solid currentColor;
}

.shane-profile .avatar-large {
    background: var(--shane-color);
    color: white;
}

.ilya-profile .avatar-large {
    background: var(--ilya-color);
    color: white;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gold);
    font-style: italic;
}

.profile-content h3 {
    color: var(--text-gold);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.profile-content ul {
    list-style: none;
    padding-left: 0;
}

.profile-content li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--text-gold);
    font-size: 1.2rem;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gold);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--text-gold);
    text-align: center;
}

.stat-card h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.record {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.shane-stat .number {
    color: var(--shane-color);
}

.ilya-stat .number {
    color: var(--ilya-color);
}

.label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.separator {
    color: var(--text-gold);
}

.streak {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.shane-streak {
    color: var(--shane-color);
}

.ilya-streak {
    color: var(--ilya-color);
}

.footnote {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.timeline {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--text-gold);
}

.timeline h3 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    border-left: 3px solid var(--text-gold);
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.timeline-item .date {
    color: var(--text-gold);
    font-weight: bold;
    min-width: 60px;
}

.vote-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.vote-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid;
    text-align: center;
    min-width: 250px;
    transition: transform 0.3s;
}

.vote-card:hover {
    transform: scale(1.05);
}

.shane-card {
    border-color: var(--shane-color);
}

.ilya-card {
    border-color: var(--ilya-color);
}

.vote-btn {
    padding: 1rem 2rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.shane-btn {
    background: var(--shane-color);
    color: white;
}

.shane-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.ilya-btn {
    background: var(--ilya-color);
    color: white;
}

.ilya-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.vote-count {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-gold);
}

.vote-message {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 5px;
    min-height: 50px;
}

.vote-message.show {
    animation: popIn 0.5s;
}

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

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--text-gold);
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .vs {
        font-size: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}
