:root {
    --bg-dark: #1A0D05;
    --bg-light: #3E2212;
    --text-main: #FDF6E3;
    --text-muted: #D4C4A8;
    --accent: #FFB74D;
    --accent-glow: rgba(255, 183, 77, 0.4);
    --glass-bg: rgba(42, 21, 8, 0.6);
    --glass-border: rgba(255, 209, 128, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background animated shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: drift 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #8D5B39;
    top: -100px;
    left: -100px;
    opacity: 0.5;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #5D3A1A;
    bottom: -150px;
    right: -100px;
    opacity: 0.6;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 30%;
    left: 40%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 60px;
    min-height: 100vh;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeUp 1s ease-out forwards;
}

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

.image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 50px;
}

.floating-icon {
    width: 100%;
    height: 100%;
    border-radius: 46px; /* modern squircle feel */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.1);
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

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

@keyframes pulseGlow {
    from { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    to { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFF, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background: rgba(26, 13, 5, 0.6);
    border: 1px solid var(--glass-border);
    padding: 14px 36px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 15px 30px var(--accent-glow);
    background: rgba(42, 21, 8, 0.8);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: var(--text-main);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
}

.btn-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.5;
    position: relative;
    z-index: 10;
}

/* Privacy & Terms Pages styles */
.container {
    max-width: 900px;
    margin: 140px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    animation: fadeUp 0.8s ease-out forwards;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFF, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2, h3 {
    color: var(--accent);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 2rem;
}

.content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.content p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}

.content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--text-muted);
}

.content li {
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Button for text pages */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(26, 13, 5, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .nav-container { padding: 0 20px; }
    header h1 { font-size: 2.5rem; }
    .content { padding: 30px 20px; border-radius: 20px; }
    .nav-links { gap: 15px; }
    .image-wrapper { width: 160px; height: 160px; }
}
