        /* Navigation Bar Styles - Integrated with Header */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #1976d2 0%, #2196f3 100%);
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.navbar-logo a:hover {
    transform: scale(1.05);
}

.navbar-icon {
    width: 35px;
    height: 35px;
    margin-right: 8px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin: 0 5px;
}

.navbar-actions, .navbar-actions-mobile {
    display: flex;
    align-items: center;
}

.navbar-actions-mobile {
    display: none;
}


.navbar-links a {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar-links a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.login-button, .register-button {
    padding: 8px 16px;
    margin-left: 10px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.register-button {
    color: white;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.register-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.login-button {
    color: #1976d2;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Modify header to blend with navbar */
.header {
    background: linear-gradient(90deg, #1976d2 0%, #2196f3 100%);
    box-shadow: none;
    padding-top: 20px;
    padding-bottom: 60px;
    border-radius: 0 0 15px 15px;
}

        
        .header {
            background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
            color: white;
            text-align: center;
            padding: 60px 20px 40px;
            font-size: 32px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .url-input-container {
            margin: 20px auto 0;
            max-width: 650px;
            display: flex;
            padding: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .url-input {
            flex-grow: 1;
            padding: 14px 20px;
            font-size: 16px;
            border: none;
            border-radius: 6px 0 0 6px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .url-input:focus {
            outline: none;
            box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);
        }
        
        .shorten-button {
            background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
            color: white;
            border: none;
            padding: 14px 24px;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 0 6px 6px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .shorten-button:hover {
            background: linear-gradient(135deg, #8bc34a 0%, #9ccc65 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .content-box {
            margin: 50px auto;
            max-width: 850px;
            background-color: #e8f5e9;
            border: 2px dashed #4caf50;
            border-radius: 18px;
            padding: 30px;
            display: flex;
            align-items: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        
        .cat-mascot {
            width: 140px;
            height: 160px;
            margin-right: 30px;
            filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
        }
        
        .content-text {
            margin: 10px;
            flex-grow: 1;
            line-height: 1.8;
            font-size: 18px;
        }
        
        .content-text p {
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
        }
        
        .telegram-button {
            background: linear-gradient(135deg, #0088cc 0%, #2196f3 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 17px;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 260px;
            margin: 20px auto 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
        }
        
        .telegram-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
        }
        
        .telegram-icon {
            margin-right: 12px;
            width: 24px;
            height: 24px;
        }

        .img-wazz{
            
            width: 200px;
            margin: 20px 40px;
        }
        i{
            line-height: 20px;
            font-size: 30px;
        }
        @media screen and (max-width: 768px) {
            .content-box {
              flex-direction: column-reverse;
              text-align: center;
            }
          
            .img-wazz {
              width: 100%;
              max-width: 240px;
              height: auto;
              margin: 0 auto 20px;
            }
          
            .content-text {
              padding: 0 10px;
            }
          
            .navbar-links {
              flex-direction: column;
            }
          
            .navbar-links li {
              margin: 10px 0;
            }
          }

          .user-menu {
            position: relative;
          }
          
          .user-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
          }
          
          .user-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
          }
          
          .user-name {
            color: white;
          }
          
          .user-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-width: 140px;
            margin-top: 8px;
            z-index: 999;
          }
          
          .user-dropdown-item {
            display: block;
            text-align: center;
            padding: 10px 16px;
            color: #333;
            text-decoration: none;
          }
          
          .user-dropdown-item:hover {
            background-color: #f0f0f0;
          }
          
          .user-dropdown-form {
            margin: 0;
          }
          
          .user-logout-button {
            width: 100%;
            border: none;
            background: none;
            padding: 10px 16px;
            text-align: center;
            color: #e53935;
            cursor: pointer;
          }
          
          .user-logout-button:hover {
            background-color: #fef0f0;
          }
          
/* Mobile Navigation */
@media screen and (max-width: 920px) {
    .shorten-button{
        padding: 10px;
     }
    .navbar-menu, .navbar-actions {
        display: none;
    }
    
    .navbar-menu.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #1976d2 0%, #2196f3 100%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        z-index: 998;
    }
    
    .navbar-links {
        flex-direction: column;
    }
    
    .navbar-links li {
        margin: 10px 0;
    }
    
    .navbar-actions.active {
        display: flex;
    }
    
    .navbar-actions.active a {
        margin: 8px 0;
        text-align: center;
    }
    
    .hamburger-menu {
        display: flex;
    }
    .navbar-actions-mobile {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-actions-mobile a {
        margin: 5px 0;
        text-align: center;
        width: 100%;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media screen and (max-width: 500px) {    
    .shorten-button{
    padding: 10px;
 }
    .navbar-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .navbar-logo a {
        font-size: 18px;
    }
    
    .navbar-icon {
        width: 28px;
        height: 28px;
    }
}