* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.navbar{
    background: rgb(0, 5, 2);
    font-family: calui;
}

.navdiv{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
    
}
.logo a{
    font-size: 35px;
    font-weight: 600;
    color: rgb(1, 250, 250);
    margin-left: 30px;  
    
}

.logo a:hover{
    color: rgb(246, 250, 1);
}


li{
    list-style: none;
    display: inline-block;
    
    
    
}
li a{
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px;
    display: block;
    
    
    
}

li a:hover{
    background-color: rgb(5, 112, 14);
}

.container {
    
    margin-top: 50px;
    text-align: center;
    z-index: 10;
}

h1 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease-out;
}

.glow-button {

    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    position: relative;
    padding: 20px 60px;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #ff0080, #835500, #017711);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glow-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.8),
                0 0 50px rgba(64, 224, 208, 0.7),
                0 0 70px rgba(255, 140, 0, 0.6);
}

.glow-button:active {
    transform: translateY(2px) scale(0.98);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 400% 400%;
    z-index: -1;
    animation: glowing 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.glow-button:hover::before {
    opacity: 1;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-button:hover::after {
    opacity: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: float 10s infinite linear;
}

@keyframes glowing {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.footer {
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}