/* Root Variables */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --accent-color: #dc2626;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --shadow-medium: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}


/* Hero Section */
.newtcg-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.newtcg-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.newtcg-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.newtcg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.newtcg-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.newtcg-hero-title {
    /* font-size: 4rem; */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.newtcg-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.newtcg-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    /* ----- */
    display: none;
}

.newtcg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newtcg-btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #b91c1c);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.newtcg-btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4);
}

.newtcg-btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.newtcg-btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.newtcg-hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.newtcg-stat-item {
    text-align: center;
}

.newtcg-stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
}

.newtcg-stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 400;
}

/* Introduction Section */
.newtcg-intro {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.newtcg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newtcg-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.newtcg-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.newtcg-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.newtcg-section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newtcg-intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.newtcg-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.newtcg-feature-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.newtcg-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.newtcg-img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.newtcg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.newtcg-intro-image:hover .newtcg-image-overlay {
    opacity: 1;
}

.newtcg-play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.75rem;
    transition: var(--transition);
}

.newtcg-play-button:hover {
    transform: scale(1.1);
    background: #b91c1c;
}

   .feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-section {
    background: #c6d4e3ad;
    padding: 80px 0;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}
/* ------ */


 .section-title {
    text-align: center;
   font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
}