@charset "UTF-8";

/* VIKINGLAB Content Layout style */
.icvfx-detail-page{
    background: #000;
    border-radius: 20px;
}
.icvfx-detail-page .icvfx-detail-page-container{
    padding: 90px;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

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

.tag {
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag.blue {
    background: #4444ff;
}

.tag.green {
    background: #44aa44;
}

.tag.orange {
    background: #ff8844;
}

.tag.purple {
    background: #8844ff;
}

/* Hero Video Section */
.hero-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
}
.hero-summary{
    color:#ebebeb;
    margin-bottom: 100px;
}
.hero-content {
}
.hero-stage{}
.hero-stage-text{
    color: #ffc000;
}
ul.hero-stage-list{
    padding-left: 20px;
}
ul.hero-stage-list li{
    color: #fff;
    margin-bottom: 32px;
}
.hero-text {
    text-align: left;
    color: white;
}

.hero-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffaa00;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}

.video-container {
    position: relative;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('img1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.play-button::after {
    content: '▶';
    font-size: 30px;
    color: #000;
    margin-left: 5px;
}

/* Section Styles */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-dark {
    background: #000;
    color: white;
}

.section-light {
    background: #fff;
    color: #333;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
}

.section-title .highlight {
    color: #ffaa00;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Why NukeStage Sections */
.why-section {
    background: #000;
    color: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.why-text h3 {
    font-size: 1.8rem;
    color: #ffaa00;
    margin-bottom: 30px;
}

.why-text p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.why-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.image-item {
    aspect-ratio: 16/10;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
}

/* Concepts Section */
.concepts-section {
    background: #fff;
    color: #333;
}

.concepts-content {
    text-align: center;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.concept-item {
    text-align: center;
    padding: 40px 20px;
}

.concept-icon {
    width: 60px;
    height: 60px;
    background: #ffaa00;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.concept-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.concept-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.hardware-visual {
    margin: 60px 0;
    text-align: center;
    position: relative;
}

.hardware-image {
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    background: url('img2.jpg') center/contain no-repeat;
}

/* Features Section */
.features-section {
    background: #000;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 30px;
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #ffaa00;
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #ffaa00;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffaa00;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hardware Section */
.hardware-section {
    background: #000;
    color: white;
}

.hardware-list {
    display: grid;
    gap: 20px;
}

.hardware-item {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffaa00;
    transition: all 0.3s ease;
}

.hardware-item:hover {
    background: #222;
    transform: translateX(10px);
}

.hardware-item h4 {
    font-size: 1.2rem;
    color: #ffaa00;
    margin-bottom: 15px;
}

.hardware-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hardware-specs {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Partnership Section */
.partnership-section {
    background: #000;
    color: white;
    text-align: center;
}

.partnership-logo {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin: 60px 0;
    letter-spacing: 3px;
}

.foundry-logo {
    color: #ffaa00;
}

.viking-logo {
    color: white;
}

.partnership-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .concepts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .project-tags {
        gap: 10px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

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

    .section {
        padding: 40px 0;
    }

    .why-images {
        grid-template-columns: 1fr;
    }

    .partnership-logo {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
}