/* ArousedAndAdore - FIXED CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(0,0,0,0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.login-btn, .signup-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.login-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #e74c3c;
}

.login-btn:hover {
    background: #e74c3c;
}

.signup-btn {
    background: #e74c3c;
    color: white;
}

.signup-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 150px 20px 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.cta-primary {
    background: #e74c3c;
    color: white;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #e74c3c;
}

.cta-secondary:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #2c3e50;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #e74c3c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: #34495e;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== A&A Glam Refresh ===== */
:root{
  --aa-bg:#141416;
  --aa-panel:#1b1d21;
  --aa-card:#202329;
  --aa-text:#e9e9ee;
  --aa-muted:#a7a9b2;
  --aa-primary:#ff2955;
  --aa-primary-2:#ff6b88;
  --aa-gold:#f7c56c;
  --aa-success:#36d399;
  --aa-shadow: 0 10px 30px rgba(0,0,0,.35);
}

html,body{background:var(--aa-bg); color:var(--aa-text);}

header{background:linear-gradient(180deg, rgba(255,41,85,.08), transparent);
  position:sticky; top:0; z-index:10; backdrop-filter: blur(6px);}

nav{max-width:1100px;margin:0 auto;padding:14px 18px;display:flex;align-items:center;gap:20px;}
nav .logo{font-weight:800;letter-spacing:.4px;color:#ff2b59}
nav ul{display:flex;gap:22px;margin-left:auto}
nav a{color:var(--aa-text);opacity:.9;text-decoration:none}
nav a:hover{opacity:1;color:#fff}

.hero{max-width:1100px;margin:52px auto 20px;padding:0 18px;text-align:center}
.hero h1{font-size:44px;line-height:1.12;margin:14px auto 10px;max-width:820px}
.hero p{color:var(--aa-muted)}
.cta-buttons{display:flex;gap:14px;justify-content:center;margin-top:18px}
.btn{padding:12px 18px;border-radius:12px;background:#2a2f38;border:1px solid #2e3340;box-shadow:var(--aa-shadow)}
.btn-primary{background:var(--aa-card)}
.btn-vip{background:var(--aa-primary);border-color:transparent;font-weight:700}
.btn-vip:hover{filter:brightness(1.05)}

.section{max-width:1100px;margin:36px auto;padding:0 18px}
.models-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
@media (max-width:900px){.models-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.models-grid{grid-template-columns:1fr}}

.model-card{background:var(--aa-card);border:1px solid #2a2f38;border-radius:18px;overflow:hidden;
  box-shadow:var(--aa-shadow);transition:transform .18s ease, box-shadow .18s ease}
.model-card:hover{transform:translateY(-4px);box-shadow:0 16px 38px rgba(0,0,0,.5)}
.model-img{position:relative;aspect-ratio:4/5;background:#111;overflow:hidden}
.model-img img{width:100%;height:100%;object-fit:cover;display:block;filter:contrast(1.03) saturate(1.08)}
.model-badge{position:absolute;left:12px;top:12px;background:rgba(20,20,22,.65);backdrop-filter:blur(6px);
  color:#fff;font-size:12px;padding:6px 9px;border-radius:999px;border:1px solid rgba(255,255,255,.15)}
.model-body{padding:16px}
.model-body h3{margin:0 0 6px}
.model-meta{color:var(--aa-muted);font-size:13px;margin-bottom:12px}
.model-actions{display:flex;gap:10px}
.badge-heart{display:inline-flex;align-items:center;gap:6px;color:var(--aa-gold);font-weight:700}
.badge-heart:before{content:"â¤";filter:drop-shadow(0 2px 4px rgba(0,0,0,.5))}
.aff-btn{flex:1;text-align:center;padding:10px 12px;border-radius:12px;border:1px solid #353a45;background:#262a31}
.aff-btn:hover{filter:brightness(1.06)}
.aff-primary{background:var(--aa-primary);border-color:transparent;font-weight:700}

/* VIP banner block */
.vip-banner{background:linear-gradient(135deg,#2a2f38, #1d2027 40%, #2a2f38);
  border:1px solid #2e3340;border-radius:20px;padding:18px;margin-top:26px;box-shadow:var(--aa-shadow)}
.vip-feats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:14px 0}
.vip-feats div{background:#1b1d21;border:1px solid #2a2f38;border-radius:12px;padding:10px 12px}
.small{font-size:12px;color:var(--aa-muted)}
