
.create-level-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(7, 11, 40, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.create-level-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/game-play/3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.create-level-hero .section-heading {
    position: relative;
    z-index: 2;
}

.create-level-hero .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.create-level-hero .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.create-level-hero .text {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Getting Started Section */
.getting-started-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.getting-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/game-play/1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.getting-started-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.getting-started-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.getting-started-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00a2ff, #0080e7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 162, 255, 0.3);
}

.step-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-link {
    color: #00a2ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: #fea036;
    transform: translateX(5px);
}

.editor-basics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.editor-basics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bc/game-hub.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.editor-basics-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.editor-basics-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.editor-basics-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.editor-interface {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.editor-interface img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.interface-annotations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
}

.annotation-dot {
    width: 12px;
    height: 12px;
    background: #00a2ff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 162, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 4px rgba(0, 162, 255, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(0, 162, 255, 0.1); }
    100% { box-shadow: 0 0 0 4px rgba(0, 162, 255, 0.3); }
}

.annotation-text {
    background: rgba(0, 162, 255, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.editor-features {
    position: relative;
    z-index: 2;
}

.editor-features h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 162, 255, 0.05);
    border-color: rgba(0, 162, 255, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00a2ff, #0080e7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 8px 16px rgba(0, 162, 255, 0.3);
}

.feature-icon i {
    font-size: 20px;
    color: #fff;
}

.feature-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.elements-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.elements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/game-play/2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.elements-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.elements-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.elements-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.element-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.element-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00a2ff, #0080e7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.3);
}

.category-icon i {
    font-size: 32px;
    color: #fff;
}

.element-category h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.element-list li {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.element-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #00a2ff;
    font-weight: bold;
}

.tips-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/counter-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.tips-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tips-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tips-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fea036, #f7b230);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(254, 160, 54, 0.3);
}

.tip-icon i {
    font-size: 24px;
    color: #fff;
}

.tip-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.tip-list li {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tip-list li strong {
    color: #00a2ff;
    font-weight: 600;
}

.tutorials-section {
    padding: 100px 0;
    background: #0b122e;
    position: relative;
    overflow: hidden;
}

.tutorials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/game-play/screenshot-21.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.tutorials-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tutorials-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tutorials-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tutorials-section .text {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.tutorial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.tutorial-thumbnail {
    position: relative;
    overflow: hidden;
}

.tutorial-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tutorial-card:hover .tutorial-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 162, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 162, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 20px;
    color: #fff;
    margin-left: 3px;
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.tutorial-content {
    padding: 20px;
}

.tutorial-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tutorial-content p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tutorial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.difficulty {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.beginner {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.difficulty.intermediate {
    background: rgba(254, 160, 54, 0.2);
    color: #fea036;
    border: 1px solid rgba(254, 160, 54, 0.3);
}

.difficulty.advanced {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.views {
    color: #9ca3af;
    font-size: 12px;
}

.showcase-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home/h5.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.showcase-section .section-heading {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.showcase-section .subtitle {
    color: #00a2ff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.showcase-section .title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.showcase-section .text {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.15);
    border-color: rgba(0, 162, 255, 0.3);
}

.showcase-image {
    position: relative;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(254, 160, 54, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.showcase-content {
    padding: 20px;
}

.showcase-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-content p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creator {
    color: #00a2ff;
    font-size: 12px;
    font-weight: 600;
}

.plays {
    color: #9ca3af;
    font-size: 12px;
}

.cta-section {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.cta-features {
    margin-top: 40px;
}

.cta-feature {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.cta-feature i {
    font-size: 32px;
    color: #00a2ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.cta-feature span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: block;
}
    
@media (max-width: 768px) {
    .create-level-hero,
    .getting-started-section,
    .editor-basics-section,
    .elements-section,
    .tips-section,
    .tutorials-section,
    .showcase-section {
        padding: 60px 0;
    }

    .create-level-hero .title,
    .getting-started-section .title,
    .editor-basics-section .title,
    .elements-section .title,
    .tips-section .title,
    .tutorials-section .title,
    .showcase-section .title {
        font-size: 32px;
    }

    .step-card,
    .element-category,
    .tip-card,
    .tutorial-card,
    .showcase-card {
        margin-bottom: 20px;
    }

    .editor-features {
        margin-top: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 200px;
    }
}

@media (max-width: 575px) {
    .create-level-hero,
    .getting-started-section,
    .editor-basics-section,
    .elements-section,
    .tips-section,
    .tutorials-section,
    .showcase-section {
        padding: 40px 0;
    }

    .create-level-hero .title,
    .getting-started-section .title,
    .editor-basics-section .title,
    .elements-section .title,
    .tips-section .title,
    .tutorials-section .title,
    .showcase-section .title {
        font-size: 28px;
        line-height: 1.3;
    }

    .step-card,
    .element-category,
    .tip-card {
        padding: 25px 20px;
    }

    .category-icon,
    .step-number {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 24px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }

    .annotation {
        display: none;
    }
} 