body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #1a1a1a;
    color: white;
    padding-bottom: 4rem;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 1.5rem auto;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.announcement {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: #ecf0f1;
}

.delegator-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.5rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    transition: all 0.3s ease;
}

.delegator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.delegator-btn:active {
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(52, 152, 219, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.5));
    }
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
}

/* Responsive design */
@media (max-width: 768px) {
    .announcement {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .delegator-btn {
        width: 100%;
    }
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.tool-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.tool-card p {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.tool-card .card-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tool-card .card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        padding: 1rem;
        gap: 1rem;
    }
}
    