/* Last updated: 2025-01-07 01:45 JST - Initial PC version */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'YuGothic', 'Yu Gothic', sans-serif;
    font-weight: bold;
    background-color: #ffffff;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

/* Main Content Area */
.main-content {
    flex: 1;
    background-color: #d2f25a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.main-logo {
    width: 646px;
    height: 502px;
    display: block;
}

/* Information Section */
.information-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.info-text {
    font-size: 20px;
    line-height: 1.6;
    color: #183380;
    text-align: center;
    white-space: nowrap;
}

/* QR Code */
.qr-code-container {
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    padding: 5.76px;
}

.qr-code {
    width: 100%;
    height: 100%;
    display: block;
}

/* City Badge */
.city-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 1000px;
    padding: 8px 20px 8px 16px;
    margin-top: 32px;
}

.city-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.city-text {
    font-size: 14px;
    line-height: 1.6;
    color: #183380;
    white-space: nowrap;
}

/* Footer Section */
.footer-section {
    background-color: #ffffff;
    padding: 40px 16px;
    display: flex;
    justify-content: center;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

.sponsor-logo {
    height: 66px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 0.8;
}

.sponsor-logo.kozaweb {
    width: 343px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .main-logo {
        width: 450px;
        height: 350px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .main-logo {
        width: 320px;
        height: 250px;
    }
    
    .info-text {
        font-size: 16px;
        white-space: normal;
    }
    
    .sponsor-logos {
        gap: 15px;
    }
    
    .sponsor-logo {
        height: 50px;
    }
    
    .sponsor-logo.kozaweb {
        width: 250px;
    }
}