:root {
    --deep-blue: #004e92;
    --light-blue: #00b4db;
    --glass-white: rgba(255, 255, 255, 0.2);
    --accent-yellow: #ffd700;
}

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

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #00b4db 0%, #004e92 100%);
    color: white;
    overflow: hidden;
}

/* Flytande bakgrundsbubblor */
.ocean { position: absolute; width: 100%; height: 100%; z-index: 0; }
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    bottom: -100px;
    animation: rise 10s infinite ease-in;
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-110vh) scale(1.5); opacity: 0; }
}

.b1 { width: 80px; height: 80px; left: 10%; animation-duration: 12s; }
.b2 { width: 120px; height: 120px; left: 30%; animation-duration: 18s; animation-delay: 2s; }
.b3 { width: 60px; height: 60px; left: 70%; animation-duration: 15s; animation-delay: 5s; }
.b4 { width: 100px; height: 100px; left: 85%; animation-duration: 20s; }

/* Central Glass-Container */
.hero-container { position: relative; z-index: 10; width: 90%; max-width: 500px; }

.glass-orb {
    background: var(--glass-white);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 10px;
}

h1 span {
    display: block;
    font-family: 'Pacifico', cursive;
    text-transform: none;
    color: var(--accent-yellow);
    font-size: 3rem;
    letter-spacing: 0;
    margin-top: -5px;
}

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

/* Fisk-displayen */
.fish-display {
    position: relative;
    margin: 40px 0;
}

.fish-circle {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#featured-fish {
    width: 180px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.landskap-tag {
    background: var(--accent-yellow);
    color: #000;
    padding: 8px 20px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Startknapp */
.btn-play {
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--deep-blue);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-play:hover {
    transform: scale(1.1);
    background: var(--accent-yellow);
    color: black;
}

/* Responsivt */
@media (max-width: 400px) {
    h1 { font-size: 2.5rem; }
    h1 span { font-size: 2.2rem; }
    .glass-orb { padding: 40px 20px; }
}

/* ... Behåll root och grundinställningar från förra svaret ... */

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.cta-button .icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.cta-button .text {
    display: flex;
    flex-direction: column;
}

.cta-button .label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.cta-button .subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Primary Button (Spelet) */
.cta-button.primary {
    background: rgba(61, 90, 254, 0.1);
    border-color: rgba(61, 90, 254, 0.3);
}

.cta-button.primary:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.cta-button.primary:hover .label,
.cta-button.primary:hover .subtext {
    color: white;
}

/* Secondary Button (Visa alla) */
.cta-button.secondary {
    background: var(--surface-bright);
}

.cta-button.secondary:hover {
    background: #2a2f3a;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Responsive för knappar */
@media (max-width: 600px) {
    .button-grid {
        grid-template-columns: 1fr;
    }
}

.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgba(0, 30, 60, 0.4);
    backdrop-filter: blur(5px);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    z-index: 100;
}

.footer-link {
    background: none;
    border: none;
    color: var(--accent-yellow);
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    text-decoration: underline;
    font-size: 0.8rem;
}

.footer-link:hover {
    color: white;
}