/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e40af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.logo i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    background: none;
    border: none;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.breadcrumb-nav a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: #3b82f6;
}

.breadcrumb-nav i {
    color: #94a3b8;
    font-size: 0.8em;
}

.breadcrumb-nav span {
    color: #1e293b;
    font-weight: 500;
}

/* Review Hero Section */
.review-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.review-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-info {
    flex: 1;
    min-width: 300px;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.platform-details h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.platform-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #fbbf24;
    font-size: 1.4em;
}

.rating-text {
    font-size: 1.2em;
    font-weight: 700;
}

.review-count {
    font-size: 0.9em;
    opacity: 0.8;
}

.platform-status {
    display: flex;
    gap: 10px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge.verified {
    background: rgba(16, 185, 129, 0.9);
}

.status-badge.premium {
    background: rgba(245, 158, 11, 0.9);
}

.status-badge.gaming {
    background: rgba(139, 92, 246, 0.9);
}

.status-badge.community {
    background: rgba(6, 182, 212, 0.9);
}

.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-text {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Quick Summary Section */
.quick-summary {
    padding: 60px 0;
    background: white;
}

.quick-summary h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease;
}

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

.summary-card.pros {
    border-color: #10b981;
}

.summary-card.cons {
    border-color: #ef4444;
}

.summary-card.verdict {
    border-color: #3b82f6;
}

.summary-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-card.pros h3 {
    color: #10b981;
}

.summary-card.cons h3 {
    color: #ef4444;
}

.summary-card.verdict h3 {
    color: #3b82f6;
}

.summary-card ul {
    list-style: none;
    padding: 0;
}

.summary-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.summary-card li:last-child {
    border-bottom: none;
}

.verdict-score {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #f8faff;
    border-radius: 15px;
}

.score {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.score-label {
    font-size: 0.9em;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Detailed Review Section */
.detailed-review {
    padding: 60px 0;
    background: #f8fafc;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
}

.review-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-section h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
}

.review-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.info-box {
    background: #f8faff;
    border: 2px solid #e0e7ff;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.info-box h4 {
    color: #3b82f6;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 5px 0;
    color: #64748b;
    border-bottom: 1px solid #e0e7ff;
}

.info-box li:last-child {
    border-bottom: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step-card {
    background: #f8faff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e0e7ff;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-card h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-card p {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.category-card.premium {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
}

.category-card.gaming {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
}

.category-card h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-card p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price-range {
    display: inline-block;
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Evidence Cards */
.legitimacy-evidence {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.evidence-card {
    background: #f8faff;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e0e7ff;
    text-align: center;
}

.evidence-card h4 {
    color: #3b82f6;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.evidence-card p {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Pros and Cons Detailed */
.pros-cons-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.pros-section h3,
.cons-section h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-section h3 {
    color: #10b981;
}

.cons-section h3 {
    color: #ef4444;
}

.pro-item,
.con-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.con-item {
    border-left-color: #ef4444;
}

.pro-item h4,
.con-item h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.pro-item p,
.con-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.comparison-table th:nth-child(6) {
    width: 120px;
    text-align: center;
}

.comparison-table td:nth-child(6) {
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.comparison-table tr.highlighted {
    background: #f8faff;
}

.comparison-table tr.highlighted td {
    font-weight: 600;
    color: #1e293b;
}

.score-high {
    color: #10b981;
    font-weight: 700;
}

.score-medium {
    color: #f59e0b;
    font-weight: 700;
}

.score-low {
    color: #ef4444;
    font-weight: 700;
}

/* Final Recommendation */
.final-recommendation {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border: 2px solid #3b82f6;
}

.recommendation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.recommendation-box h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-box ul {
    list-style: none;
    padding: 0;
}

.recommendation-box li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #e0e7ff;
}

.recommendation-box li:last-child {
    border-bottom: none;
}

.final-score-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid #e0e7ff;
}

.final-score-box h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.final-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.big-score {
    font-size: 4em;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.rating-breakdown {
    flex: 1;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rating-item span:first-child {
    font-weight: 600;
    color: #1e293b;
    min-width: 140px;
    text-align: left;
}

.rating-item span:last-child {
    font-weight: 700;
    color: #3b82f6;
    min-width: 60px;
    text-align: right;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 18px 36px;
    font-size: 1.2em;
}

.disclaimer {
    font-size: 0.9em;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.faq-item h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn,
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary,
.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover,
.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary,
.cta-button.secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    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 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat {
        padding: 0.75rem 1.5rem;
    }

    .review-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .platform-details h1 {
        font-size: 2rem;
    }

    .platform-logo {
        justify-content: center;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    .rating {
        justify-content: center;
    }

    .platform-status {
        justify-content: center;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pros-cons-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recommendation-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .final-rating {
        flex-direction: column;
        gap: 20px;
    }

    .big-score {
        font-size: 3em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .review-hero {
        padding: 40px 0;
    }

    .platform-details h1 {
        font-size: 1.75rem;
    }

    .quick-summary h2 {
        font-size: 1.8rem;
    }

    .summary-card,
    .review-section {
        padding: 25px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }

.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-semibold { font-weight: 600; }
.font-weight-bold { font-weight: 700; }

.text-primary { color: #3b82f6; }
.text-secondary { color: #64748b; }
.text-success { color: #10b981; }
.text-warning { color: #f59e0b; }
.text-danger { color: #ef4444; }

.bg-primary { background-color: #3b82f6; }
.bg-secondary { background-color: #f1f5f9; }
.bg-success { background-color: #10b981; }
.bg-warning { background-color: #f59e0b; }
.bg-danger { background-color: #ef4444; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-section {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.cta-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* Featured Platforms */
.featured-platforms {
    padding: 5rem 0;
    background: white;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.logo-icon.hypedrop {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.logo-icon.hapabox {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.logo-icon.jemlit {
    background: linear-gradient(135deg, #10b981, #059669);
}

.logo-icon.casesgg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.platform-desc {
    color: #64748b;
    margin-bottom: 1rem;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-text {
    font-weight: 600;
    color: #1e293b;
}

.play-now-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-now-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.play-now-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    width: auto;
    min-width: 100px;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #f1f5f9;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.comparison-table tr:hover {
    background: #f8fafc;
}

.platform-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-cell .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.platform-cell span {
    font-weight: 600;
    color: #1e293b;
}

.rating-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-container {
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #1e40af;
}

/* Deals Section */
.deals-section {
    padding: 5rem 0;
    background: white;
}

.deals-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.deal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.deal-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.deal-content {
    flex: 1;
}

.deal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.deal-content p {
    color: #64748b;
    margin: 0;
}

.claim-now-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-now-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Guides Section */
.guides-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content h3 a {
    color: inherit;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: #1e40af;
}

.article-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e40af;
}

.read-more-container {
    text-align: center;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1e40af;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #3b82f6;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-section {
        flex-direction: column;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-cards {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .platform-card,
    .article-card {
        padding: 1.5rem;
    }
    
    .deal-item {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-card,
.article-card,
.deal-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
} 