* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

/* Reviews Section Styles */
.reviews {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 55, 0.95));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLCAyMTAsIDI1NSwgMC4wMikiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: 0;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

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

.review-card {
    background: rgba(20, 20, 45, 0.7);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(58, 123, 213, 0.05));
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(0, 210, 255, 0.3);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: #fff;
}

.review-rating {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Prices Section Styles */
.prices {
    background: linear-gradient(135deg, rgba(25, 25, 55, 0.95), rgba(15, 15, 35, 0.95));
    padding: 80px 0;
    position: relative;
}

.prices::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.5), transparent);
}

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

.price-card {
    background: rgba(20, 20, 45, 0.7);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(58, 123, 213, 0.05));
    z-index: -1;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.4);
}

.price-card.featured {
    border: 1px solid rgba(0, 210, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
}

.price-card.featured::before {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.1));
}

.price-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #0f0f23;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.price-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}

.price-header h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.3rem;
}

.price-amount {
    display: flex;
    flex-direction: column;
}

.price-robux {
    color: #00d2ff;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-usd {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d2ff;
}

.payment-methods {
    margin-top: 60px;
    text-align: center;
}

.payment-methods h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.payment-icon {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.payment-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .reviews-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card, .price-card {
        padding: 20px;
    }
    
    .price-header h3 {
        font-size: 1.1rem;
    }
    
    .price-robux {
        font-size: 1rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e94560;
    line-height: 1.6;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.page-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}

section, div, canvas {
    max-width: 100vw;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d2ff;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d2ff;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.interactive-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00d2ff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d2ff;
    border: 2px solid #00d2ff;
}

.btn-secondary:hover {
    background: #00d2ff;
    color: #0f0f23;
    transform: translateY(-3px);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    max-width: 50%;
    z-index: 2;
}



.floating-cube {
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 16px;
    transform-style: preserve-3d;
}

.animation-placeholder {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-cube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #00a8ff 100%);
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 210, 255, 0.4),
        0 5px 15px rgba(0, 210, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: float 4s linear infinite;
    transform-origin: center center;
}

.floating-cube::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

.floating-cube:nth-child(1) {
    animation-delay: 0s;
    top: 15%;
    left: 15%;
}

.floating-cube:nth-child(1)::before {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #0ea5e9 100%);
    animation: float 4s linear infinite;
    animation-delay: 0s;
    transform-origin: center center;
}

.floating-cube:nth-child(1)::after {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    animation-delay: 0s;
}

.floating-cube:nth-child(2) {
    animation-delay: 1.5s;
    top: 55%;
    right: 15%;
    width: 70px;
    height: 70px;
}

.floating-cube:nth-child(2)::before {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #dc2626 100%);
    box-shadow: 
        0 15px 35px rgba(244, 63, 94, 0.4),
        0 5px 15px rgba(244, 63, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: float 4s linear infinite;
    animation-delay: 1.5s;
    transform-origin: center center;
}

.floating-cube:nth-child(2)::after {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    animation-delay: 1.5s;
}

.floating-cube:nth-child(3) {
    animation-delay: 3s;
    bottom: 15%;
    left: 35%;
    width: 90px;
    height: 90px;
}

.floating-cube:nth-child(3)::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    box-shadow: 
        0 15px 35px rgba(139, 92, 246, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: float 4s linear infinite;
    animation-delay: 3s;
    transform-origin: center center;
}

.floating-cube:nth-child(3)::after {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    animation-delay: 3s;
}

@keyframes float {
    0% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% { 
        transform: translateY(-15px) rotateX(10deg) rotateY(90deg) rotateZ(5deg);
    }
    50% { 
        transform: translateY(-25px) rotateX(15deg) rotateY(180deg) rotateZ(10deg);
    }
    75% { 
        transform: translateY(-15px) rotateX(10deg) rotateY(270deg) rotateZ(5deg);
    }
    100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(360deg) rotateZ(0deg);
    }
}

@keyframes glow {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d2ff;
}

.about-card p {
    color: #ccc;
    line-height: 1.6;
}

.portfolio {
    padding: 100px 0;
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 210, 255, 0.2);
}

.video-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.portfolio-item h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: #00d2ff;
    font-weight: 600;
}

.portfolio-item p {
    padding: 0 1rem 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.image-gallery {
    text-align: center;
}

.image-gallery h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation: zoomIn 0.3s ease forwards;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.placeholder-image {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.1));
    border: 2px dashed rgba(0, 210, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image:hover {
    transform: scale(1.05);
    border-color: rgba(0, 210, 255, 0.6);
}

.placeholder-content {
    text-align: center;
    color: #00d2ff;
}

.placeholder-content span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.services {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e94560;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

.terms {
    padding: 100px 0;
}

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

.terms-version {
    background: rgba(233, 69, 96, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #e94560;
    margin-bottom: 2rem;
}

.terms-version p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.terms-note {
    color: #ffaa00 !important;
    font-size: 0.9rem;
}

.terms-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h3 {
    font-size: 1.3rem;
    color: #00d2ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section p, .terms-section li {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section li::before {
    content: '▸';
    color: #00d2ff;
    margin-right: 0.5rem;
    font-weight: bold;
}

.contact {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,210,255,0.1) 0%, transparent 30%, rgba(0,210,255,0.1) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: rotate(360deg); }
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d2ff;
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
}

.discord-warning {
    position: relative;
}

.highlight {
    color: #FFA500;
    font-weight: bold;
}

.discord-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.discord-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(88, 101, 242, 0.5);
}

.discord-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.discord-name {
    color: #fff;
    font-weight: 600;
}

.discord-username {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer {
    background: rgba(15, 15, 35, 0.8);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease-in-out;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .hamburger.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .animation-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
}