/* TheDogeFather v1 - Futuristic Landing Page */
/* Dark, cyberpunk-inspired theme with neon accents (blues, greens, oranges, reds) */

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Animated background particles for impact */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s infinite alternate;
    z-index: -1;
}

@keyframes backgroundShift {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.header {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #ff4500, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.link-card {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
    border-color: #ff4500;
}

.link-card:hover .glow {
    opacity: 1;
}

.link-text {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 140, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888888;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .link-card {
        font-size: 1.2rem;
        padding: 20px;
    }
}