/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
.bg {
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header */
header {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 5px black;
}

/* Hamburger */
.hamburger {
    font-size: 32px;
    color: white;
    cursor: pointer;
    user-select: none;
}

/* Slide-Out Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    padding-top: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

.side-menu.open {
    right: 0;
}

.close-btn {
    font-size: 30px;
    color: white;
    text-align: right;
    padding: 10px 20px;
    cursor: pointer;
}

.side-menu ul {
    list-style: none;
    padding: 10px;
}

.side-menu ul li {
    margin-bottom: 10px;
}

.side-menu ul li a {
    display: block;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.side-menu ul li a:hover {
    background: rgba(255,255,255,0.25);
}

/* Main Content */
.content {
    text-align: center;
    margin-top: 120px;
    padding: 20px;
    color: white;
    text-shadow: 0 0 5px black;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Buttons */
.pp-btn {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('buttonbg.mp4');
    transition: transform 0.2s;
}

.pp-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 18px;
    }
    .content h1 {
        font-size: 28px;
    }
    .pp-btn {
        width: 90%;
    }
}