* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px 40px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.set-highlight {
	display: grid;
	grid-template-columns: 0.15fr 1fr 0.15fr;
	align-content: center;
	align-items: center;
	padding: 20px 10px;
}

.set-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.set-logo {
    margin: auto;
    max-width: 100%;
}

.set-icon {
    margin: auto;
    max-width: 100%;
    transition: scale 0.3s ease, translate 0.3s ease;
}

.set-icon:hover {
    scale: 1.1; 
    translate: 0px 0px;
    transition: scale 0.3s ease, translate 0.3s ease;
}

.release-info {
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.release-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4ecdc4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-date {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.links-section h2 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: #4ecdc4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px 0px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    width: 90%;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.spoiler-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    align-content: center;
    width: 500px;
    height: 80px;
}

.spoiler-link:hover {
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.preorder-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    gap: 15px;
    margin-top: 20px;
}


.sidebar {
    position: sticky;
    top: 20px;
}

.ad-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-height: 600px;
    display: flex;
    overflow: hidden;
}

.ad-container ins {
    min-height: 500px;
    width: 100%;
}

.footer {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.2);
	margin: 25px 0px 0px 0px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 0px;
        /* Move sidebar above content on mobile for better ad visibility on mobile/tablet in portrait*/
        display: flex;
        flex-direction: column-reverse;
    }

    .content {
        width: 100%;
    }
    
    .set-highlight {
        padding: 10px 0px 0px 0px;
    }

    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .ad-container {
        /* Horizontal banner ad on mobile/tablet in portrait mode */
        min-height: 120px;
        max-height: 120px;
        padding: 5px;
    }
    .ad-container ins {
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .set-title {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 10px 20px;
    }

    .release-info h2 {
        font-size: 1.2rem;
    }
    
    .release-date {
        font-size: 1.5rem;
    }
    
    .preorder-links {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .link-button {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        font-size: x-small;
    }
}

@media (max-width: 480px) {
    .set-title {
        font-size: 2rem;
    }
}
