:root {
    --primary: #004a99;
    --secondary: #fbb016;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent: #ff4d4d;
    --particle-color: rgba(251, 176, 22, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0c0c0c;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomOut 20s infinite alternate ease-in-out;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--particle-color);
    border-radius: 50%;
    filter: blur(1px);
    animation: drift linear infinite;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 74, 153, 0.4) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* Logo Styles */
.logo-section {
    padding: 2rem 0;
    animation: fadeInDown 1s ease-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: glowText 3s infinite alternate ease-in-out;
}

.crown {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: -0.5rem;
    filter: drop-shadow(0 0 10px rgba(251, 176, 22, 0.5));
    animation: pulseCrown 2s infinite alternate ease-in-out;
}

.main-text {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
}

.sub-text {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--secondary);
    margin-top: 0.5rem;
}

/* Content Styles */
.content {
    margin: 2rem 0;
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary);
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

/* Info Card */
.info-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%
    );
    animation: shimmer 6s infinite linear;
    pointer-events: none;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-item h3 {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
    text-transform: uppercase;
}

.card-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

.hover-effect:hover i {
    background: var(--secondary);
    color: #000;
}

.full-width {
    grid-column: 1 / -1;
}

/* Brand Bar */
.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.brand-item {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.brand-separator {
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Footer */
footer {
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Animations */
@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    from { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    to { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes drift {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

@keyframes pulseCrown {
    from { transform: scale(1) rotate(0); filter: drop-shadow(0 0 10px rgba(251, 176, 22, 0.5)); }
    to { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 20px rgba(251, 176, 22, 0.8)); }
}

@keyframes glowText {
    from { text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    to { text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
}

/* Responsive */
@media (max-width: 768px) {
    .heading { font-size: 2.5rem; }
    .main-text { font-size: 3rem; }
    .info-card { padding: 1.5rem; }
    .card-grid { grid-template-columns: 1fr; }
}
