/* Import Mythical Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --peak-slate: #1e1e1e;
    --gold: #d4af37;
    --mist: #cbd5e1;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.9)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, var(--bg-dark));
}

.hero h1 {
    font-size: clamp(3.5rem, 12vw, 6rem);
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.5s ease-out;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    max-width: 900px;
    font-weight: 300;
    color: var(--mist);
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

/* Strategy Section */
.strategy-section {
    margin-bottom: 8rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.strategy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strategy-header h2 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.strategy-header p {
    color: var(--mist);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.strategy-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.strategy-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.strategy-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.strategy-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Domain Grid */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.domain-card {
    background: var(--peak-slate);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.domain-card:hover::before {
    left: 100%;
}

.domain-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.domain-name {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
}

.paypal-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    padding: 1rem;
    border: 1px solid var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.paypal-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Trust Section */
.trust-section {
    margin-top: 8rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-header h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.trust-header p {
    color: var(--gold);
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trust-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Brokered Section */
.brokered-by {
    text-align: center;
    padding: 6rem 2rem;
    background: #050505;
    border-top: 1px solid #1a1a1a;
}

.brokered-by p {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.brokered-by img {
    max-width: 280px;
    height: auto;
    filter: grayscale(1) brightness(1.5);
    transition: filter 0.3s ease;
}

.brokered-by img:hover {
    filter: grayscale(0) brightness(1);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .container { padding: 4rem 1rem; }
}
