/* Slaughter Games - Gaming Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Creepster', 'Nosifer', cursive;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.3);
    border: 3px solid #ff0000;
    position: relative;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 50px;
}

.logo-placeholder {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff0000;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    position: relative;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff0000, transparent, #ff0000, transparent, #ff0000);
    z-index: -1;
    animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 3.5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
    font-weight: bold;
}

.logo-font {
    font-family: 'Creepster', cursive;
    text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 45px #ff0000;
    animation: blood-drip 2s ease-in-out infinite;
}

@keyframes blood-drip {
    0%, 100% {
        text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
        letter-spacing: 5px;
    }
    50% {
        text-shadow: 0 0 25px #ff0000, 0 0 50px #ff0000, 0 0 75px #ff0000;
        letter-spacing: 6px;
    }
}

/* Eternal Ranking */
.eternal-ranking {
    text-align: center;
    padding: 40px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 3px solid #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.ranking-title {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    text-transform: uppercase;
}

.ranking-container {
    max-height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.ranking-list.small .ranking-item {
    padding: 8px;
    font-size: 0.9rem;
}

.ranking-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3));
    border: 2px solid #gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.ranking-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(169, 169, 169, 0.3));
    border: 2px solid #c0c0c0;
}

.ranking-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.3), rgba(160, 82, 45, 0.3));
    border: 2px solid #cd7f32;
}

.rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    min-width: 40px;
}

.name {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Creepster', cursive;
}

.axe-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    margin-left: 3px;
    animation: axe-glow 2s ease-in-out infinite;
}

.axe-collection {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 200px;
    justify-content: flex-end;
}

@keyframes axe-glow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.9));
    }
}

.spirit-glyph {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Individual Tournaments */
.individual-rankings {
    margin-top: 40px;
}

.tournament-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.tournament {
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.5);
}

.tournament h3 {
    font-size: 1.3rem;
    color: #ff4444;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    font-family: 'Creepster', cursive;
}

.tournament .ranking-list {
    gap: 8px;
}

.tournament .ranking-list.small .rank {
    font-size: 1.2rem;
}

.tournament .ranking-list.small .name {
    font-size: 1rem;
}

/* Screens > 800px */
@media (min-width: 800px) {
    .tournament-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .ranking-title {
        font-size: 1.5rem;
    }

    .ranking-container {
        max-height: 300px;
    }

    .name {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .logo-placeholder {
        width: 180px;
        height: 180px;
    }
}
/* Cube Links Section */
.cube-links {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.5);
    text-align: center;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cube-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(139, 0, 0, 0.1));
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    color: #ff3333;
    text-decoration: none;
    font-family: 'Creepster', cursive;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cube-link:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(139, 0, 0, 0.2));
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.cube-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: -1;
}

.cube-link:hover::before {
    width: 300%;
    height: 300%;
}

.cube-icon {
    font-size: 1.5rem;
    animation: cube-pulse 2s ease-in-out infinite;
}

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

@media (min-width: 600px) {
    .links-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Header Axe Icon */
.header-axe {
    width: 30px;
    height: 30px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 5px;
    animation: header-pulse 2s ease-in-out infinite;
}

@keyframes header-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.9));
    }
}

/* Group Banner */
.group-banner {
    margin-top: 40px;
    text-align: center;
}

.group-image {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
}
