/* Stories Page Styles */
:root {
    --primary: #ffc107;
    --primary-dark: #ffa000;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: var(--text-shadow);
}

.page-header p {
    font-size: 18px;
    color: var(--light);
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 40px;
}

.testimonials-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.user-avatar i {
    font-size: 20px;
    color: var(--dark);
}

.user-info {
    flex: 1;
}

.user-info h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 5px;
}

.user-info p {
    font-size: 14px;
    color: #aaa;
}

.win-amount {
    background-color: rgba(255, 193, 7, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}

.win-amount span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
}

.testimonial-game {
    display: flex;
    align-items: center;
}

.testimonial-game span {
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.testimonial-game span i {
    margin-right: 5px;
}

/* Share Story Section */
.share-story {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.share-story h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.share-story p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.share-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Analysis Section */
.analysis-section {
    margin-bottom: 40px;
}

.analysis-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.analysis-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.analysis-card {
    background-color: var(--darker);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.analysis-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.analysis-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.analysis-content {
    padding: 20px;
}

.analysis-content h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.analysis-content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Strategy Guides */
.strategy-guides {
    margin-bottom: 40px;
}

.strategy-guides h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.strategy-guides h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.guide-card {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.guide-icon i {
    font-size: 24px;
    color: var(--dark);
}

.guide-card h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.guide-card p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.guide-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.cta-section p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ddd;
    border-radius: 50px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-grid,
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .analysis-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .user-avatar {
        margin-bottom: 10px;
    }
    
    .win-amount {
        margin-top: 10px;
    }
} 