/* Product Page Styles */

/* 이미지 보호 */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* PC/Mobile Text Display Control */
.text-mobile {
    display: none;
}

.text-pc {
    display: block;
}

/* Platform Package Section */
.platform-section {
    background: rgba(15, 15, 15, 0.7);
    padding: 80px 0;
}

.platform-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.15);
    position: relative;
    overflow: hidden;
}

.platform-content::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        rgba(0, 255, 65, 0.5),
        rgba(0, 255, 65, 0.2),
        rgba(0, 255, 65, 0.8),
        var(--accent-color)
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s linear infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.platform-image {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2px;
}

.platform-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        #00ff00,
        #0000ff,
        #ff00ff,
        #00ffff,
        #ff0000,
        #00ff00
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rgbBorderGlow 4s linear infinite;
    z-index: 1;
}

@keyframes rgbBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.platform-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.platform-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.platform-intro {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.platform-details {
    margin-top: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    border-radius: 8px;
}

.platform-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.platform-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Product Version Section */
.product-version-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.product-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.platform-image-mobile {
    display: none;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        rgba(0, 255, 65, 0.5),
        rgba(0, 255, 65, 0.2),
        rgba(0, 255, 65, 0.8),
        var(--accent-color)
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s linear infinite;
    z-index: -1;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.25);
}

.product-card.featured {
    border-color: rgba(0, 255, 65, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-color), #00cc33);
    color: #000;
    padding: 8px 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.4);
    z-index: 10;
    font-family: 'Orbitron', sans-serif;
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.product-image-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 2px;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        #00ff00,
        #0000ff,
        #ff00ff,
        #00ffff,
        #ff0000,
        #00ff00
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rgbBorderGlow 4s linear infinite;
    z-index: 1;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}


.product-specs {
    margin-bottom: 25px;
}

.product-specs h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li i {
    color: var(--accent-color);
    font-size: 16px;
    min-width: 20px;
}

.product-description {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

.product-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.product-description .text-pc {
    text-align: center;
}

.product-description .text-mobile {
    text-align: center;
}

.product-price {
    margin-top: auto;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.price-label {
    display: block;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.price-period {
    display: inline-block;
    font-size: 18px;
    color: var(--text-muted);
    margin-left: 5px;
}

/* Monitor Bundle Card */
.monitor-bundle-card {
    margin-top: 40px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.15);
    position: relative;
    overflow: hidden;
}

.monitor-bundle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        rgba(0, 255, 65, 0.5),
        rgba(0, 255, 65, 0.2),
        rgba(0, 255, 65, 0.8),
        var(--accent-color)
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s linear infinite;
    z-index: -1;
}

.monitor-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.monitor-image {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2px;
}

.monitor-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        #00ff00,
        #0000ff,
        #ff00ff,
        #00ffff,
        #ff0000,
        #00ff00
    );
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rgbBorderGlow 4s linear infinite;
    z-index: 1;
}

.monitor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.monitor-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.monitor-description h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.monitor-description h3 i {
    font-size: 32px;
}

.monitor-intro {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.monitor-specs h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.spec-slider-container {
    position: relative;
}

.spec-indicators {
    display: none;
}

.spec-nav-btn {
    display: none;
}

.spec-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.spec-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.monitor-note {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.monitor-note i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
}

.monitor-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Product Slider for Mobile */
.product-slider-container {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 20px 0;
    overflow: hidden;
}

.product-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.product-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0px;
    padding-bottom: 30px;;
    box-sizing: border-box;
}

.product-nav-btn {
    position: absolute;
    bottom: 15px;
    transform: none;
    width: 27px;
    height: 27px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.product-nav-btn:hover {
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

.product-prev-btn {
    left: 10px;
}

.product-next-btn {
    right: 10px;
}

.product-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.product-indicator {
    width: 9.6px;
    height: 9.6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-indicator.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1024px) {
    .platform-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .platform-image {
        display: none;
    }

    .platform-image-mobile {
        display: block;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
    }

    .platform-image-mobile img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .product-grid {
        display: none;
    }

    .product-slider-container {
        display: block;
    }

    .monitor-content {
        flex-direction: column;
        gap: 30px;
    }

    .monitor-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .spec-slider-container {
        overflow: hidden;
        position: relative;
        padding-bottom: 35px;
    }

    .spec-grid {
        display: flex;
        transition: transform 0.5s ease;
        gap: 0;
        margin-bottom: 15px;
    }

    .spec-item {
        min-width: 100%;
        flex: 0 0 100%;
        margin: 0;
    }

    .spec-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .spec-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .spec-indicator.active {
        background: var(--accent-color);
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
    }

    .spec-nav-btn {
        display: flex;
        position: absolute;
        bottom: 70%;
        transform: translateY(50%);
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid var(--accent-color);
        border-radius: 50%;
        color: var(--accent-color);
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    }

    .spec-nav-btn:hover {
        background: rgba(0, 255, 65, 0.2);
        box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
    }

    .spec-next-btn {
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    /* PC/Mobile Text Display Control for Mobile */
    .text-pc {
        display: none;
    }

    .text-mobile {
        display: block;
    }

    .platform-section,
    .product-version-section,
    .software-only-section {
        padding: 60px 0;
    }
    .price-label {
        font-size: 13px;
    }

    .platform-content {
        padding: 25px 20px;
    }

    .platform-description h3 {
        font-size: 24px;
        text-align: center;
    }

    .platform-intro {
        font-size: 16px;
        text-align: center;
    }

    .platform-features {
        gap: 12px;
    }

    .feature-item {
        font-size: 14px;
    }

    .platform-details {
        padding: 15px;
    }

    .platform-details h4 {
        font-size: 18px;
    }

    .platform-details p {
        font-size: 14px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-image-wrapper {
        padding: 0px;
    }

    .product-specs h4 {
        font-size: 18px;
    }

    .product-specs li {
        font-size: 14px;
        padding: 10px 0;
    }

    .product-description {
        padding: 15px;
    }

    .product-description p {
        font-size: 14px;
    }

    .product-price {
        padding: 20px;
    }

    .price-amount {
        font-size: 28px;
    }

    .price-period {
        font-size: 16px;
    }

    .recommended-badge {
        font-size: 12px;
        padding: 6px 40px;
    }

    .monitor-bundle-card {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .monitor-description h3 {
        font-size: 22px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .monitor-intro {
        font-size: 16px;
        text-align: center;
    }

    .monitor-specs h4 {
        font-size: 20px;
        text-align: center;
    }

    .spec-item {
        padding: 12px;
    }

    .spec-label {
        font-size: 13px;
    }

    .spec-value {
        font-size: 15px;
    }

    .monitor-note {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .monitor-note i {
        display: none;
    }

    .monitor-note p {
        font-size: 14px;
    }

    .monitor-note .text-mobile {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .platform-description h3 {
        font-size: 20px;
    }

    .platform-intro {
        font-size: 14px;
    }

    .feature-item {
        font-size: 13px;
    }

    .platform-details h4 {
        font-size: 16px;
    }

    .platform-details p {
        font-size: 13px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-specs h4 {
        font-size: 16px;
    }

    .product-specs li {
        font-size: 13px;
    }

    .product-description p {
        font-size: 13px;
    }

    .price-amount {
        font-size: 24px;
    }

    .price-period {
        font-size: 14px;
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }

    .monitor-description h3 {
        font-size: 20px;
    }

    .monitor-intro {
        font-size: 14px;
    }

    .monitor-specs h4 {
        font-size: 18px;
    }

    .spec-label {
        font-size: 12px;
    }

    .spec-value {
        font-size: 14px;
    }

    .monitor-note p {
        font-size: 13px;
    }
}
