/* DESPLANDIA Links Page CSS */

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
    color: #FFFFFF;
    min-height: 100vh;
}

/* Main title styling */
.main-title {
    font-family: 'Bungee', cursive;
    text-shadow: 
        3px 3px 0px #000000,
        0 0 15px #FF00C1,
        0 0 25px #FF00C1;
    animation: title-pulse 3s ease-in-out infinite alternate;
}

@keyframes title-pulse {
    from {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 15px #FF00C1,
            0 0 25px #FF00C1;
    }
    to {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 10px #FF00C1,
            0 0 20px #FF00C1,
            0 0 30px #FF00C1;
    }
}

.subtitle {
    font-family: 'Righteous', cursive;
    text-shadow: 2px 2px 4px #000000;
}

.section-header {
    font-family: 'Alfa Slab One', cursive;
    text-shadow: 2px 2px 4px #000000;
}

/* Navigation link */
.nav-link {
    color: #C1FF00;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    font-weight: bold;
    padding: 8px 15px;
    display: block;
}

.nav-link:hover {
    color: #000000;
    background-color: #C1FF00;
    text-shadow: none;
}

/* Main links container */
.links-container {
    width: 80%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8);
    border: 4px ridge #808080;
    margin: 20px auto;
    animation: gentle-waves 4s ease-in-out infinite;
}

/* Gentle wave pulse effect */
@keyframes gentle-waves {
    0% {
        box-shadow: 
            0 0 20px rgba(0, 193, 255, 0.3),
            0 0 40px rgba(0, 193, 255, 0.1);
    }
    25% {
        box-shadow: 
            0 0 30px rgba(193, 255, 0, 0.4),
            0 0 60px rgba(193, 255, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(255, 0, 193, 0.3),
            0 0 50px rgba(255, 0, 193, 0.1);
    }
    75% {
        box-shadow: 
            0 0 35px rgba(255, 102, 0, 0.4),
            0 0 70px rgba(255, 102, 0, 0.2);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(0, 193, 255, 0.3),
            0 0 40px rgba(0, 193, 255, 0.1);
    }
}

.links-header {
    background: linear-gradient(135deg, #FF00C1, #9900FF);
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #404040;
}

.links-content {
    padding: 20px;
    line-height: 2;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* Link styling */
.links-content a {
    color: #00C1FF;
    text-decoration: none;
    display: block;
    padding: 3px 5px;
    margin: 2px 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.links-content a:visited {
    color: #FF00C1;
}

.links-content a:hover {
    color: #C1FF00;
    background: rgba(193, 255, 0, 0.1);
    border-left-color: #C1FF00;
    padding-left: 10px;
    text-shadow: 0 0 5px #C1FF00;
}

.links-content a:active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer styling */
.footer-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px !important;
}

/* Blink animation */
blink {
    animation: blink-text 1.5s infinite;
}

@keyframes blink-text {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Table styling */
table {
    border-collapse: separate;
    border-spacing: 2px;
}

/* General font effects */
font[color="#FF00C1"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #FF00C1;
}

font[color="#C1FF00"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #C1FF00;
}

/* Responsive design */
@media (max-width: 768px) {
    .links-container {
        width: 95%;
    }
    
    .links-content {
        padding: 15px;
        font-size: 12px;
    }
    
    .main-title {
        font-size: 2rem;
    }
}