* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
}

/* Updated Golden Gradient for Title based on Screenshot */
.page-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(
	355deg, #f9f3c2 0%, #e9cf5d 25%, #d4af37 50%, #b8860b 75%, #8a6d3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.8));
    letter-spacing: 2px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 100%;
}

.icon-link:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: breathingGlow 2s infinite alternate ease-in-out;
    overflow: hidden;
}

.logo-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.icon-title {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: var(--theme-color);
    color: white;
    text-align: center;
}

@keyframes breathingGlow {
    0% {
        box-shadow: 0 0 10px var(--theme-color), 
                    0 0 20px var(--theme-color);
    }
    100% {
        box-shadow: 0 0 20px var(--theme-color), 
                    0 0 40px var(--theme-color), 
                    0 0 60px var(--theme-color);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .page-title {
        font-size: 36px;
    }

    .icon-box {
        width: 250px;
        height: 250px;
    }
}