 /* Brandon Scout Games - Block Puzzle CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Import main.css base styles */
@import url('main.css');

/* Game Abds Section */
.game-bds-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.game-bds-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,200 1000,0 1000,1000 0,800"/></svg>');
    background-size: cover;
    z-index: 1;
}

.game-bds-section .container {
    position: relative;
    z-index: 2;
}

.game-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.meta-item .material-icons {
    color: #FFD700;
    font-size: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.download-buttons .btn {
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.download-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.back-button .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-button .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

/* Game Image Container */
.game-image-container {
    position: relative;
    text-align: center;
}

.game-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-main-image:hover {
    transform: scale(1.05) rotateY(5deg);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: 10%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Screenshots Section */
.screenshots-section {
    background: #f8f9fa;
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.screenshot-item {
    flex: 0 0 300px;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.screenshot-item:hover img {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Custom scrollbar for screenshots */
.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: #FF6B6B;
    border-radius: 4px;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
}

.feature-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* How to Play Section */
.howto-steps {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.step-item:hover {
    background: #f8f9fa;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.howto-tips {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.howto-tips h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.tip-item:hover {
    background: #f8f9fa;
}

.tip-item .material-icons {
    color: #FFD700;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.tip-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

.feature-badge .material-icons {
    font-size: 1.3rem;
}

/* Reviews Section */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.review-stars .material-icons {
    color: #FFD700;
    font-size: 1.5rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reviewer strong {
    color: #2c3e50;
    font-weight: 600;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .game-title {
        font-size: 3rem;
    }
    
    .game-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .screenshots-carousel {
        gap: 1rem;
    }
    
    .screenshot-item {
        flex: 0 0 250px;
    }
    
    .download-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-subtitle {
        font-size: 1.1rem;
    }
    
    .howto-steps,
    .howto-tips {
        margin-bottom: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-icons {
        display: none;
    }
}

@media (max-width: 576px) {
    .game-title {
        font-size: 2rem;
    }
    
    .game-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .howto-steps,
    .howto-tips,
    .review-card {
        padding: 1.5rem;
    }
    
    .screenshots-carousel {
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 200px;
    }
    
    .screenshot-item img {
        height: 350px;
    }
}