:root {
    --primary-color: #8B0000;
    --secondary-color: #c30101;
    --accent-color: #FFD700;
    --text-light: #FFFFFF;
}
        a {
            text-decoration: none;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
                font-family: 'Exo 2', 'Michroma', Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: var(--text-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Section */
        .hero-section {
    background: linear-gradient(135deg, rgb(255 0 0 / 95%) 0%, rgb(0 0 0 / 90%) 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: mirror-flash 2.5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: brightness(1.2);
}
@media (max-width: 768px) {
    .hero-section::after {
        width: 50%;
        left: -100%;
        animation-duration: 3s;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%
        );
    }
}
@keyframes mirror-flash {
    0% {
        transform: skewX(-20deg) translateX(-100%);
    }
    100% {
        transform: skewX(-20deg) translateX(400%);
    }
}

        .logo-container {
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .brand-logo {
            max-width: 300px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
        }

        .header-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
          gap:15px;
}
.domain-name {
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
      .security-tagline {
    display: block;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

     .latest-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

        /* Buttons Section */
        .buttons {
            display: grid;
            gap: 15px;
            margin: 30px 0;
        }

        .btn {
            background: linear-gradient(135deg, var(--accent-color) 0%, #FFA500 100%);
            color: var(--primary-color);
            padding: 18px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .btn i {
            font-size: 1.2em;
        }
      /* Footer */
        /* Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
.feature-badge {
        margin: 0;
    }            .container {
                padding: 15px;
            }

            .hero-section {
                padding: 25px;
            }

            .brand-logo {
                max-width: 200px;
            }

            .btn {
                padding: 15px 20px;
                font-size: 0.9em;
            }
        }

        .latest-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(9deg, #00000000 20%, rgb(255 215 0 / 10%) 35%, rgb(255 215 0 / 48%) 50%, rgb(255 215 0 / 10%) 65%, transparent 80%);
    animation: shine 3s infinite linear;
}

        /* Backup Buttons */
        .backup-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin: 25px 0;
    gap: 15px;
    width: 100%;
}


.backup-link .register-btn i {
    color: gray;
}
.backup-link .register-btn:hover i {
    color: yellow;
    text-shadow: 0 0 9px gold;
}

        /* Special Buttons */
        .special -section {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        /* Loading Animation */
        @keyframes shine {
            0% { transform: translateX(-50%) rotate(45deg); }
            100% { transform: translateX(50%) rotate(45deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .latest-btn {
                padding: 1.2rem 2rem;
            }
            
            .backup-section {
                grid-template-columns: 1fr;
            }
            
        }

        /* Connection Status */
        .connection-status {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 12px 20px;
            border-radius: 8px;
            border-left: 4px solid #00FF00;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .status-text {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-icon {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00FF00;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
        }
.loading-message {
    text-align: center;
    padding: 20px;
    color: #FFA500;
    font-size: 1.2em;
    animation: pulse 1.5s infinite;
}

.error-message {
    text-align: center;
    padding: 20px;
    color: #dc3545;
    background: #fff3f3;
    border: 2px solid #ffd6d6;
    border-radius: 8px;
    margin: 15px;
    line-height: 1.6;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.fa-spinner {
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    transform-origin: center;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}