:root {
    --primary: #FFC000;
    --dark: #222;
    --darker: #1a1a1a;
    --text: #ffffff;
    --secondary: #aaaaaa;
    --accent: #FFA500;
    --bg-gradient: linear-gradient(135deg, #222 0%, #333 100%);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background-color: var(--darker);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid var(--primary);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 192, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 192, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bounce-in {
    animation: bounceIn 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale3d(.3, .3, .3); }
    20% { transform: scale3d(1.1, 1.1, 1.1); }
    40% { transform: scale3d(.9, .9, .9); }
    60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
    80% { transform: scale3d(.97, .97, .97); }
    100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 300;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Mock Browser/Toolbar Animation */
.mock-browser {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    margin: 40px auto -80px; /* Pull it down to break the section */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    border: 1px solid #444;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mock-content {
    flex: 1;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0),
    linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}

.mock-toolbar {
    background: #000;
    border-top: 3px solid var(--primary);
    height: 55px; /* Matches extension */
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%; /* For scrolling effect */
    will-change: transform;
}

.mock-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    min-width: 300px;
    padding: 5px 10px;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
}

.mock-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 4px;
    margin-right: 10px;
}

.mock-text {
    font-size: 0.8rem;
    text-align: left;
}

.mock-text .line1 { color: #fff; }
.mock-text .line1 b { color: var(--primary); }
.mock-text .line2 { color: var(--secondary); font-size: 0.75rem; }


/* Features Section */
.features {
    padding: 120px 0 80px;
    background: #f4f4f4;
    color: #222;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    /* Make text readable on white */
    color: #d19c00; 
}

/* Install Section */
.install {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.install h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    counter-reset: step;
    list-style: none;
}

.steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--dark);
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
}

.highlight {
    background: #444;
    padding: 3px 6px;
    border-radius: 4px;
    color: var(--primary);
    font-family: monospace;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: #e6ac00;
    border-color: #e6ac00;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 192, 0, 0.1);
}

/* Footer */
footer {
    background: #111;
    color: #666;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .mock-browser { display: none; } /* Hide complex animation on mobile */
    .hero { padding-bottom: 80px; }
}
