body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #2a1f2d;
    color: #ffffff;
}

header {
    background: #3d2a40;
    padding: 20px;
    /* position: sticky;
    top: 0; */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    margin: 0;
}

.logo-container img {
    max-width: 50px;
    height: auto;
    vertical-align: middle;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff69b4;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin: 0;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .logo-container {
        margin-bottom: 0;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    nav.active a {
        padding: 10px 0;
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}

section {
    padding: 10px 10px;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

button {
    padding: 12px 24px;
    background-color: #ff69b4;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff4aa1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.video-grid iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.comments {
    background: #3d2a40;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}

.comment {
    margin-bottom: 15px;
    border-bottom: 1px solid #ff69b4;
    padding-bottom: 15px;
    line-height: 1.6;
}

.guide-step {
    margin-bottom: 20px;
    padding: 15px;
    background: #3d2a40;
    border-radius: 8px;
    border-left: 4px solid #ff69b4;
}

.social-buttons a {
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #ff69b4;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.social-buttons a:hover {
    background: #ff69b4;
    color: white;
}

footer {
    background: #3d2a40;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 40px;
}

footer a {
    color: #ff69b4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

h2 {
    color: #ff69b4;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
} 