<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Impact', 'Arial Black', sans-serif;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: #ffffff;
        line-height: 1.6;
    }

    header {
        background-color: #000000;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    h1 {
        text-align: center;
        font-size: 3.5em;
        color: #d60606;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    nav {
        background-color: #1a1a1a;
        padding: 15px 0;
        text-align: center;
        border-top: 2px solid #d60606;
        border-bottom: 2px solid #d60606;
    }

    nav a {
      color: #d60606;
      text-decoration: none;
      padding: 10px 25px;
      margin: 0 10px;
      font-size: 1.1em;
      transition: all 0.3s ease;
      border-radius: 5px;
      font-family: 'Arial Black', Impact, sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    nav a:hover {
        background-color: #ffda0a;
        transform: translateY(-2px);
    }

    section {
        max-width: 800px;
        margin: 50px auto;
        padding: 0 20px;
    }

    h2 {
        font-size: 3em;
        color: #d60606;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    .form-container {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 3px solid #d60606;
    }

    .form-group {
        margin-bottom: 25px;
    }

    label {
        display: block;
        font-size: 1.2em;
        color: #d60606;
        margin-bottom: 10px;
        font-family: 'Arial Black', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    input[type="text"],
    input[type="email"],
    select,
    textarea {
        width: 100%;
        padding: 15px;
        font-size: 1.1em;
        background-color: rgba(255, 255, 255, 0.1);
        border: 2px solid #555;
        border-radius: 5px;
        color: #ffffff;
        font-family: 'Courier New', monospace;
        transition: all 0.3s ease;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #d60606;
        background-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    }

    select {
        cursor: pointer;
    }

    select option {
        background-color: #1a1a1a;
        color: #1a1a1a;
    }

    textarea {
        resize: vertical;
        min-height: 150px;
        font-family: 'Courier New', monospace;
    }

    .submit-btn {
        width: 100%;
        padding: 18px;
        font-size: 1.3em;
        background-color: #d60606;
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Impact', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0);
    }

    .submit-btn:hover {
        background-color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    footer {
        background-color: #000000;
        text-align: center;
        padding: 20px;
        margin-top: 50px;
        border-top: 2px solid #d60606;
    }

    footer p {
        color: #ffffff;
        font-family: 'Courier New', monospace;
    }

    .guitar-icon {
        text-align: center;
        font-size: 4em;
        margin-bottom: 20px;
    }
</style>
