:root {
    --greek-blue: #0D5EAF; /* Classic Greek Flag Blue */
    --greek-white: #FFFFFF;
    --gold-accent: #C5A059;
    --text-color: #333333;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Background Decoration - Abstract Waves */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 20%, rgba(13, 94, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 400px; /* Mobile first constraint */
    animation: fadeIn 1.5s ease-out;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--greek-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.greek-line {
    height: 4px;
    width: 60%;
    margin: 0 auto 1rem;
    background-color: var(--gold-accent);
    border-radius: 2px;
    position: relative;
}

/* Simple CSS representation of a Greek meander pattern vibe */
.greek-line::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent 50%, var(--greek-white) 50%);
    background-size: 10px 100%;
    opacity: 0.3;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fancy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.icon {
    margin-right: 0.8rem;
    font-size: 1.2em;
}

/* YouTube Button */
.youtube-btn {
    background-color: var(--greek-blue);
    color: var(--greek-white);
    border: 2px solid var(--greek-blue);
}

.youtube-btn:hover {
    background-color: var(--greek-white);
    color: var(--greek-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 94, 175, 0.3);
}

/* Dummy Button */
.dummy-btn {
    background-color: transparent;
    color: var(--greek-blue);
    border: 2px solid var(--greek-blue);
}

.dummy-btn:hover {
    background-color: var(--greek-blue);
    color: var(--greek-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 94, 175, 0.2);
}

/* Footer */
footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #888;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1s forwards; /* Delay fade in */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
