/* Global Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    --primary-color: #FF6B00;
    --primary-dark: #E65000;
    --accent-color: #00A8FF;
    --dark-bg: #1a1a1a;
    --darker-bg: #121212;
    --light-text: #fff;
    --light-opacity: rgba(255, 255, 255, 0.8);
    --highlight: #FFD700;
}

body {
	background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--light-text);
	min-height: 100vh;
}

/* Hero Banner */
.hero-banner {
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://placehold.co/1200x250/1a1a1a/1a1a1a?text=Drone+Racing') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.drone-static {
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 15px var(--accent-color));
    opacity: 0.8;
}

#container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

#content {
	text-align: center;
	padding: 2rem 0;
}

.domain-highlight {
	margin-bottom: 3rem;
}

.domain-highlight h1 {
	font-size: 4.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 800;
	text-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
	letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tagline {
	font-size: 1.5rem;
	color: var(--light-text);
	opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.price-tag {
    background-color: var(--primary-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transform: rotate(-2deg);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Market Opportunity Section */
.market-opportunity {
    background: rgba(0, 168, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.market-opportunity h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.timer {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--highlight);
    margin-top: 0.5rem;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.feature {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 10px;
	transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
	transform: translateY(-5px);
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.feature p {
	color: var(--light-text);
	opacity: 0.8;
}

/* Market Stats */
.market-stats {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
    position: relative;
}

.market-stats h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}

.stat {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(0, 168, 255, 0.1);
}

.stat h3 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.stat p {
    color: var(--light-opacity);
    font-size: 1rem;
}

.cta-section {
	background: rgba(255, 255, 255, 0.05);
	padding: 3rem;
	border-radius: 15px;
	margin-top: 4rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: -1;
}

.cta-section h2 {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.value-prop {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--light-text);
}

.cta-section ul {
	list-style: none;
	margin-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.cta-section li {
	margin: 0.8rem 0;
	font-size: 1.1rem;
	color: var(--light-text);
	opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.cta-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.urgency {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 80%;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.urgency p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.deadline {
    font-size: 1.1rem;
    color: var(--highlight);
}

.highlight {
    color: var(--highlight);
    font-weight: bold;
    border-bottom: 1px solid var(--highlight);
    padding-bottom: 2px;
}

.contact-button {
	display: inline-block;
	background: var(--primary-color);
	color: #1a1a1a;
	padding: 1rem 2.5rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-button:hover {
	background: var(--primary-dark);
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.contact-button:hover::after {
    height: 100%;
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
    padding: 0 1rem;
}

blockquote {
    font-style: italic;
    color: var(--light-opacity);
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    color: rgba(255, 107, 0, 0.2);
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--accent-color);
    font-weight: 500;
}

footer {
	text-align: center;
	padding: 2rem 0;
	color: #666;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	body {
		font-size: 14px;
	}
	
	.domain-highlight h1 {
		font-size: 3rem;
	}
	
	.tagline {
		font-size: 1.2rem;
	}
	
	.features, .market-stats {
		grid-template-columns: 1fr;
	}
	
	.cta-section {
		padding: 2rem;
	}
	
	.cta-section h2 {
		font-size: 2rem;
	}
    
    .hero-banner {
        height: 180px;
    }
    
    .drone-static {
        max-width: 100px;
    }
    
    .urgency {
        max-width: 100%;
    }
    
    blockquote {
        max-width: 100%;
    }
}