/* Global Styles */
:root {	
	--gf-style-primary-blue: #00CCFF;
	--gf-style-primary-blue-gradient:linear-gradient(#00CCFF, #0066CC);
	--gf-gradient-primary: linear-gradient(135deg, #00CCFF 0%, #0099CC 100%);
	--gf-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	--gf-gradient-accent: linear-gradient(135deg, #00CCFF 0%, #1a1a1a 100%);
}

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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px 0px 15px;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 25px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

section {
    padding: 20px 0;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: #000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

.game {
    color: #fff;
}

.face {
    color: #00c2ff;
}

/* Hero Section */
.hero {
    background-color: #000;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 10px 0 20px;
}

.hero-content {
    display: flex;
}

.hero-text-content {
    flex: 0 0 50%;
    padding-top: 20px;
}

.hero-image {
    flex: 0 0 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
	text-align: center;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #00c2ff;
}

.blue-text {
    color: #00c2ff;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 20px;
}

.green-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #A8CA4D;
    max-width: 600px;
    margin-bottom: 20px;
}

.teal-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #4DCAA6;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #00c2ff;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00a8e0;
}

.testimonial-box {
    max-width: 600px;
    margin-top: 15px;
    border-left: thick solid;
    padding-left: 20px;
}

.stars {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    align-self: flex-start;
}

/* How It Works Section */
.how-it-works {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.step {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.step-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.3);
    overflow: visible;
}

.step-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 255, 0.5);
    z-index: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #00c2ff;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.3);
}

/* Benefits Section */
.benefits {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: #00c2ff;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.3);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 255, 0.5);
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-content {
    flex-grow: 1;
    font-size: 20px;;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

/* Tools Section */
.tools {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.tool-text {
    margin-bottom: 20px;
}

.tool-image {
    grid-column: 2;
    grid-row: 1 / span 4;
}

/* Testimonials Section */
.testimonials {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.testimonial-card {
    flex: 0 0 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 15px;
    align-self: flex-start;
}

.large-testimonial {
    display: flex;
    background-color: #000;
    color: #fff;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.large-testimonial-content {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.large-testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.large-testimonial-image {
    flex: 0 0 50%;
}

.large-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Comparison Section */
.comparison {
    background-color: #e6e6e6;
    color: #333;
    padding: 15px 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #aaa;
}

.comparison-table td:first-child {
    font-weight: bold;
}

.comparison-table th {
    font-weight: bold;
}

.icon-text {
    display: flex;
    align-items: flex-start;
}

.check, .x {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.check i, .x i {
    font-size: 40px !important;
}

.check i.fa-check-circle {
    color: #A8CA4D !important;
}

.x i.fa-times-circle {
    color: #ff6b6b !important;
}

/* FAQ Section */
.faq {
    background-color: #e6e6e6;
    color: #333;
    padding: 5px 0 5px;
}

.faq-item {
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.faq-question i {
    margin-right: 10px;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 0 15px 25px;
    display: none;
}

/* CTA Section */
.cta-section {
    background-color: #e6e6e6;
    color: #333;
    padding: 40px 0;
    text-align: center;
}

.pricing {
    margin: 20px 0;
}

.pricing h3 {
    font-size: 1.8rem;
}

.final-testimonials {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.final-testimonial-card {
    flex: 0 0 48%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer .logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .logo-image {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .steps {
        justify-content: center;
    }
    
    .step {
        flex: 0 0 45%;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-image {
        grid-column: 1;
        grid-row: auto;
        margin-top: 30px;
    }
    
    .testimonial-grid {
        justify-content: center;
    }
    
    .testimonial-card {
        flex: 0 0 45%;
    }
    
    .large-testimonial {
        flex-direction: column;
    }
    
    .large-testimonial-content, .large-testimonial-image {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .final-testimonials {
        flex-direction: column;
    }
    
    .final-testimonial-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .comp-text {
        display: none;
    }
}

/* Image Styles */

.tool-image img, .large-testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===== HEADER STYLES ===== */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 194, 255, 0.3);
    transition: background 0.3s, box-shadow 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
    border-radius: 0;
}

.logo-image-l {
    height: 60px;
    margin-right: 10px;
    border-radius: 0;
}

.logo .game {
    color: #fff;
}

.logo .face {
    color: #00c2ff;
}

.nav-links a.active {
    color: #00c2ff;
}

/* Register Button */
.register-btn {
    background: linear-gradient(135deg, #A8CA4D, #4DCAA6) !important;
    color: #000 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none;
    font-weight: 600 !important;
    transition: all 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 202, 77, 0.3);
    color: #000 !important;
}

/* Login Button */
.login-btn {
    background: rgba(0, 194, 255, 0.1) !important;
    color: #00c2ff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none;
    font-weight: 600 !important;
    border: 2px solid #00c2ff !important;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #00c2ff !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 255, 0.3);
}

/* Scroll effect for header */
header.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 194, 255, 0.2) !important;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 194, 255, 0.3);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00c2ff;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #00c2ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* TODO: Add mobile menu */
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
