/* Server Status Checker Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.tool-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    color: white;
}

/* Stats & Benefits */
.stats-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #764ba2;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
}

.stats-label {
    color: #718096;
    font-weight: 500;
    margin-top: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8faff;
    height: 100%;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Status Info Cards */
.status-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid #e2e8f0;
    text-align: center;
}

.status-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.status-code-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.status-code-desc {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.status-todo {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    text-align: left;
}

.status-todo-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
}

.status-todo-content {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Status Colors */
.status-card-200 {
    border-top-color: #48bb78;
}

.status-card-200 .status-code-title {
    color: #48bb78;
}

.status-card-301 {
    border-top-color: #4299e1;
}

.status-card-301 .status-code-title {
    color: #4299e1;
}

.status-card-404 {
    border-top-color: #ed8936;
}

.status-card-404 .status-code-title {
    color: #ed8936;
}

.status-card-500 {
    border-top-color: #f56565;
}

.status-card-500 .status-code-title {
    color: #f56565;
}


/* Animated Gradient Text */
.animated-gradient-text {
    background-image: linear-gradient(to right, #ffffff, #e3d9f1, #d0aaf3, #c4a6f5);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-animation 8s infinite alternate;
    display: inline-block;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}