body {
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-tab {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #ff9f1c;
    color: black;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    z-index: 11;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.header {
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
}

.video-container {
    width: 280px;
    height: 160px;
    margin: 0 100px 20px 0;
    display: inline-block;
    vertical-align: top;
}

.video-guide {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.guide-box {
    display: inline-block;
    text-align: left;
    margin-left: 20px;
    vertical-align: top;
    margin-top: 40px;
}

.guide-text {
    font-size: 18px;
    font-weight: bold;
    color: #ff9f1c;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

.image-card {
    width: 300px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .game-image {
    transform: scale(1.05);
}

.image-caption {
    padding: 15px;
}

.game-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ff9f1c;
}