:root {
    --primary-color: #d4af37; /* Gold for history/premium feel */
    --youtube-color: #ff0000;
    --facebook-color: #1877f2;
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --card-bg: rgba(20, 20, 25, 0.15); /* Much more transparent / faded */
    --card-border: rgba(255, 255, 255, 0.03); /* Barely visible border */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Softer shadow */
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

body, html {
    height: 100%;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #0a0a0a;
    overflow: hidden; /* Prevent scrolling for a clean app-like feel */
}

/* Background setup - you will replace the URL with your actual image */
body {
    background-image: url('./background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark overlay to ensure text is readable regardless of the background image */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Faded black overlay */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Moved to bottom so background text is visible */
    padding: 20px;
    padding-bottom: 15px; /* Pushed even closer to the bottom edge */
}

/* Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem 2.5rem; /* Slimmer padding since it only holds buttons */
    width: 100%;
    max-width: 700px; /* Wider to accommodate side-by-side buttons */
    text-align: center;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(4px); /* Reduced blur for a more faded look */
    -webkit-backdrop-filter: blur(4px);
    
    /* Initial state for JS animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Logo Area */
.logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, var(--primary-color), #8a6d1c);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-icon {
    font-size: 2rem;
    color: white;
}

/* Typography */
.title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Buttons */
.links-container {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 1; /* Allow buttons to share equal width in the row */
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.4rem;
    width: 30px;
    display: flex;
    justify-content: center;
}

.btn-text {
    flex-grow: 1;
    text-align: left;
    margin-left: 1rem;
}

.btn-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Specific Button Styles */
.btn-youtube:hover {
    border-color: var(--youtube-color);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.btn-youtube .btn-icon {
    color: var(--youtube-color);
}

.btn-facebook:hover {
    border-color: var(--facebook-color);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

.btn-facebook .btn-icon {
    color: var(--facebook-color);
}

/* Responsive adjustments */
@media (max-width: 650px) { /* Breakpoint adjusted for two buttons */
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .links-container {
        flex-direction: column; /* Revert to column on small screens */
        gap: 1.2rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
}
